Files: eb3938470f7dee8766731b14c7345333971487e8 / pages / _app.tsx
860 bytesRaw
1 | import {Fragment} from 'react'; |
2 | import Head from 'next/head'; |
3 | |
4 | import '../styles/_app.css'; |
5 | import '../styles/index.css'; |
6 | |
7 | import '../styles/header.css'; |
8 | import '../styles/contacts.css'; |
9 | |
10 | export default function MyApp({ Component, pageProps }) { |
11 | const isDevelopment = process.env.NODE_ENV !== 'development'; |
12 | |
13 | return ( |
14 | <Fragment> |
15 | <Head> |
16 | <meta charSet="UTF-8" /> |
17 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
18 | <meta httpEquiv="X-UA-Compatible" content="ie=edge" /> |
19 | <link rel="icon" type="image/png" href="/favicon.png" /> |
20 | <title>Rômulo Alves</title> |
21 | {isDevelopment && ( |
22 | <script async defer data-domain="romuloalves.dev" src="//analytics.romuloalves.dev/js/plausible.js"></script> |
23 | )} |
24 | </Head> |
25 | <Component {...pageProps} /> |
26 | </Fragment> |
27 | ); |
28 | } |
29 |
Built with git-ssb-web