|
@@ -1,5 +1,4 @@
|
|
|
import React from "react";
|
|
|
-import packageJson from "package.json";
|
|
|
|
|
|
interface SeoTagsProps {
|
|
|
title: string;
|
|
@@ -16,7 +15,7 @@ export const SeoTags: React.FC<SeoTagsProps> = ({
|
|
|
<meta name="description" content={description} />
|
|
|
|
|
|
{/* <!-- Facebook Meta Tags --> */}
|
|
|
- <meta property="og:url" content={packageJson.homepage} />
|
|
|
+ <meta property="og:url" content="https://jsoncrack.com" />
|
|
|
<meta property="og:type" content="website" />
|
|
|
<meta property="og:title" content={title} />
|
|
|
<meta property="og:description" content={description} />
|
|
@@ -24,8 +23,8 @@ export const SeoTags: React.FC<SeoTagsProps> = ({
|
|
|
|
|
|
{/* <!-- Twitter Meta Tags --> */}
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
- <meta property="twitter:domain" content="jsoncrack.com" />
|
|
|
- <meta property="twitter:url" content={packageJson.homepage} />
|
|
|
+ <meta property="twitter:domain" content="https://jsoncrack.com" />
|
|
|
+ <meta property="twitter:url" content="https://jsoncrack.com" />
|
|
|
<meta name="twitter:title" content={title} />
|
|
|
<meta name="twitter:description" content={description} />
|
|
|
<meta name="twitter:image" content={image} />
|