forked from crowetic/commerce
* replace next-seo with custom solution * Updated check Co-authored-by: LFades <luis@vercel.com>
18 lines
357 B
TypeScript
18 lines
357 B
TypeScript
import type { VFC } from 'react'
|
|
import { SEO } from '@components/common'
|
|
|
|
const Head: VFC = () => {
|
|
return (
|
|
<SEO>
|
|
<meta
|
|
key="viewport"
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1"
|
|
/>
|
|
<link rel="manifest" href="/site.webmanifest" key="site-manifest" />
|
|
</SEO>
|
|
)
|
|
}
|
|
|
|
export default Head
|