diff --git a/components/utils/SEO.tsx b/components/utils/SEO.tsx index 09a902e..96bb27b 100644 --- a/components/utils/SEO.tsx +++ b/components/utils/SEO.tsx @@ -1,42 +1,26 @@ -import { RSSFeedURL, WebsiteURL } from "@/consts/consts"; +import { RSSFeedURL } from "@/consts/consts"; import { Config } from "@/data/config"; -import { NextSeo } from "next-seo"; +import Head from "next/head"; -export const SEO = (props: { title: string; description?: string | null; coverURL?: string | null }) => { +type TSEOProps = { title: string; description?: string | null; coverURL?: string | null; smallTwitterCard?: boolean }; + +export const SEO = (props: TSEOProps) => { return ( - <> +