mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
47ad3f9982
* Docs have been migrated from docbook to yaml + jinja2 + pandoc * Created a new (basic) website for docs based on React + Tailwinds
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
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>
|
|
)
|
|
}
|