core/components/SEO.tsx
2021-01-07 23:57:38 +09:00

24 lines
577 B
TypeScript

import Head from 'next/head'
const SEO = ({ title, description, image }:SEOProps):JSX.Element => {
return <Head>
<title>{title}</title>
{ description && <meta
name="description"
content={description}
/> }
<meta name="og:site_name" content="한국 디스코드봇 리스트" />
<meta name="og:title" content={title} />
{ description && <meta name="og:description" content={description} /> }
{ image && <meta name="og:image" content={image} /> }
</Head>
}
export default SEO
interface SEOProps {
title: string
description?: string
image?: string
}