update meta tag site_name
This commit is contained in:
parent
3c939fd2dc
commit
a82e99611e
2 changed files with 2 additions and 6 deletions
|
@ -8,10 +8,6 @@ const defaultDescription =
|
|||
|
||||
let { title, description = defaultDescription } = Astro.props;
|
||||
|
||||
title = `${
|
||||
title ? `${title} | ` : ""
|
||||
}Ayo Ayco | Software Engineer + Web Developer`;
|
||||
|
||||
const baseURL = "https://ayo.ayco.io";
|
||||
---
|
||||
|
||||
|
@ -34,13 +30,13 @@ const baseURL = "https://ayo.ayco.io";
|
|||
<meta name="twitter:image:src" content="/ayo.png" />
|
||||
|
||||
<!-- Open Graph data -->
|
||||
<meta property="og:site_name" content="Ayo Ayco" />
|
||||
<meta property="og:title" content={title} />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content={baseURL + Astro.url.pathname} />
|
||||
<meta property="og:image" content="/ayo.png" />
|
||||
<meta property="og:image:alt" content={description} />
|
||||
<meta property="og:description" content={description} />
|
||||
<meta property="og:site_name" content={title} />
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
|
||||
</head>
|
||||
|
|
|
@ -4,7 +4,7 @@ import Card from "../components/Card.astro";
|
|||
import Footer from "../components/Footer.astro";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Layout title="Home Website">
|
||||
<section class="highlighted-section">
|
||||
<div class="highlighted-section__content">
|
||||
<h1 title="Ayo Ayco | Software Engineer + Web Developer">
|
||||
|
|
Loading…
Reference in a new issue