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