blob: 2b98f92983d21ecb0d0788f5b24e2059650c9519 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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.png" />
<link rel="stylesheet" type="text/css" href="/static/nprogress.css" />
<title>Sick Fits!</title>
</Head>
);
export default Meta;
|