blob: eb205e38c1e842ac7ddab062e3f14867c4f00180 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import React from 'react'
import ThemeProvider from "../theme/ThemeProvider";
import GlobalStyle from "../theme/GlobalStyle";
import {Watermark} from "../components/Watermark";
import styled from "styled-components";
const Main = styled.div`
margin-top: 10vh;
padding: 0 20vw 30px 20vw;
`
const App = ({ Component, pageProps }) => (
<ThemeProvider>
<GlobalStyle />
<Watermark/>
<Main id="appElement">
<Component {...pageProps} />
</Main>
</ThemeProvider>
)
export default App
|