mirror of
https://github.com/vercel/commerce.git
synced 2025-08-21 16:21:24 +00:00
assets
components
agility-global
agility-modules
agility-pageTemplates
auth
cart
common
Avatar
FeatureBar
Footer
Head
Head.tsx
index.ts
HomeAllProductsGrid
I18nWidget
Layout
Navbar
Searchbar
UserNav
index.ts
icons
product
ui
wishlist
config
docs
framework
lib
pages
pagesBAK
public
.editorconfig
.env.template
.gitignore
.prettierignore
README.md
codegen.json
global.d.ts
jsconfig.json
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
|