Meta.js 359 B

12345678910111213
  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.png" />
  7. <link rel="stylesheet" type="text/css" href="/static/nprogress.css" />
  8. <title>AutoMate</title>
  9. </Head>
  10. )
  11. export default Meta