1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 06:59:09 +00:00
conky/web/components/SEO.tsx

17 lines
332 B
TypeScript
Raw Normal View History

import Head from 'next/head'
interface SEOProps {
title: string
description: string
}
export default function SEO({ title, description }: SEOProps) {
return (
<Head>
<title>{title}</title>
<meta name="description" content={description} />
<meta property="og:title" content={title} />
</Head>
)
}