aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/SEO.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SEO.tsx')
-rw-r--r--src/components/SEO.tsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/components/SEO.tsx b/src/components/SEO.tsx
deleted file mode 100644
index b13dc19..0000000
--- a/src/components/SEO.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from "react";
-import { useSiteMetadata } from "../hooks";
-
-export function Head(): React.ReactElement {
- const { author, description, title } = useSiteMetadata();
-
- return (
- <>
- <meta name="twitter:description" content={description ?? ""} />
- <meta name="twitter:title" content={title ?? ""} />
- <meta name="twitter:creator" content={author ?? ""} />
- <meta name="twitter:card" content="summary" />
- <meta name="description" content={description ?? ""} />
- <title>{title}</title>
- </>
- );
-}