aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/index.tsx')
-rw-r--r--src/pages/index.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 32f1373..bc89334 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -117,6 +117,10 @@ const Home: NextPageWithLayout = () => {
<Head>
<title>{seo.homepage.title}</title>
<meta name="description" content={seo.homepage.description} />
+ <meta property="og:type" content="website" />
+ <meta property="og:url" content={`${config.url}`} />
+ <meta property="og:title" content={seo.homepage.title} />
+ <meta property="og:description" content={seo.homepage.description} />
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(schemaJsonLd) }}