Meta.js 430 B

1234567891011121314
  1. import Head from 'next/head'
  2. const Meta = () => (
  3. <Head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1" />
  5. <meta charSet="utf-8" />
  6. <link rel="shortcut icon" href="/static/favicon.svg" />
  7. <link rel="stylesheet" type="text/css" href="/static/nprogress.css" />
  8. <link rel="stylesheet" type="text/css" href="/static/reset.css" />
  9. <title>AutoMate</title>
  10. </Head>
  11. )
  12. export default Meta