git ssb

0+

Rômulo Alves / website



Tree: c78f62a6c634aec87aa21cc8edf159adcdea73f3

Files: c78f62a6c634aec87aa21cc8edf159adcdea73f3 / pages / _app.tsx

743 bytesRaw
1import {Fragment} from 'react';
2import Head from 'next/head';
3
4export default function MyApp({ Component, pageProps }) {
5 return (
6 <Fragment>
7 <Head>
8 <meta charSet="UTF-8" />
9 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10 <meta httpEquiv="X-UA-Compatible" content="ie=edge" />
11 <link rel="icon" type="image/png" href="/favicon.png" />
12 <title>Rômulo Alves</title>
13 </Head>
14 <Component {...pageProps} />
15 <style global jsx>{`
16 * {
17 margin: 0;
18 padding: 0;
19 }
20 body {
21 font-family: Verdana, sans-serif;
22 }
23 h3, p {
24 line-height: 1.6;
25 }
26 `}</style>
27 </Fragment>
28 );
29}
30

Built with git-ssb-web