git ssb

0+

Rômulo Alves / website



Tree: 9fe4692300e786f603d0456a8df7e201b1ce41ab

Files: 9fe4692300e786f603d0456a8df7e201b1ce41ab / pages / _app.tsx

745 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 <meta name="description" content="romuloalves - software engineer" />
12 <link rel="icon" type="image/png" href="/favicon.png" />
13 <title>Rômulo Alves</title>
14 </Head>
15 <Component {...pageProps} />
16 <style global jsx>{`
17 body {
18 font-family: Verdana, sans-serif;
19 margin: 0;
20 padding: 0;
21 }
22 `}</style>
23 </Fragment>
24 );
25}
26

Built with git-ssb-web