1234567891011121314 |
- import Head from 'next/head'
- const Meta = () => (
- <Head>
- <meta name='viewport' content='width=device-width, initial-scale=1' />
- <meta charSet='utf-8' />
- <link rel='shortcut icon' href='/favicon.ico' />
- <link rel='stylesheet' type='text/css' href='/nprogress.css' />
- <link rel='stylesheet' type='text/css' href='/normalize.css' />
- <title>u-fit</title>
- </Head>
- )
- export default Meta
|