mirror of
https://github.com/vercel/commerce.git
synced 2025-08-16 13:51:24 +00:00
.vscode
assets
components
auth
cart
common
Avatar
FeatureBar
Footer
Head
Head.tsx
index.ts
HomeAllProductsGrid
I18nWidget
Layout
Navbar
Searchbar
UserNav
index.ts
icons
product
ui
wishlist
config
framework
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
.prettierrc
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
19 lines
439 B
TypeScript
19 lines
439 B
TypeScript
import { FC } from 'react'
|
|
import NextHead from 'next/head'
|
|
import { DefaultSeo } from 'next-seo'
|
|
import config from '@config/seo.json'
|
|
|
|
const Head: FC = () => {
|
|
return (
|
|
<>
|
|
<DefaultSeo {...config} />
|
|
<NextHead>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="manifest" href="/site.webmanifest" key="site-manifest" />
|
|
</NextHead>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Head
|