Updated to Next.js 13
This commit is contained in:
12
components/Meta.js
Normal file
12
components/Meta.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import Head from 'next/head'
|
||||
|
||||
export default function Meta(props) {
|
||||
return (
|
||||
<Head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta charSet="utf-8" />
|
||||
<title>{props.siteTitle}</title>
|
||||
<meta name="Description" content={props.description}></meta>
|
||||
</Head>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user