Skip to content

Commit

Permalink
fix: seo (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
jolexxa authored Sep 18, 2024
1 parent 835f275 commit 5b98de2
Showing 1 changed file with 25 additions and 26 deletions.
51 changes: 25 additions & 26 deletions src/components/vgv_page/vgv-page.astro
Original file line number Diff line number Diff line change
Expand Up @@ -50,33 +50,32 @@ const pagefindEnabled =
class:list={[...(props.htmlClasses ?? [])]}
>
<head>
<Head {...props}>
<SEO
title={title}
description={description}
openGraph={{
basic: {
title: title,
type: "website",
image: thumbnail,
<Head {...props} />
<SEO
title={title}
description={description}
openGraph={{
basic: {
title: title,
type: "website",
image: thumbnail,
},
}}
twitter={{
creator: "@VGVentures",
}}
extend={{
link: [{ rel: "icon", href: "/favicon.ico" }],
meta: [
{
name: "twitter:image",
content: thumbnail,
},
}}
twitter={{
creator: "@VGVentures",
}}
extend={{
link: [{ rel: "icon", href: "/favicon.ico" }],
meta: [
{
name: "twitter:image",
content: thumbnail,
},
{ name: "twitter:title", content: title },
{ name: "twitter:description", content: description },
],
}}
/>
</Head>
{ name: "twitter:title", content: title },
{ name: "twitter:description", content: description },
],
}}
/>
<style>
html:not([data-has-toc]) {
--sl-mobile-toc-height: 0rem;
Expand Down

0 comments on commit 5b98de2

Please sign in to comment.