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