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="/static/favicon.svg" />
- <link rel="stylesheet" type="text/css" href="/static/nprogress.css" />
- <link rel="stylesheet" type="text/css" href="/static/reset.css" />
- <title>AutoMate</title>
- </Head>
- )
- export default Meta
|