blob: 3505dc1cdb45989fea34db37d2a2be2e2c5b258c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/** @jsx jsx */
import { css, jsx, Global } from "@emotion/core";
import LandingPage from "./pages/LandingPage";
import colors from "./colors";
const globalStyles = css`
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@700&display=swap');
body {
background-color: ${colors.notQuiteBlack};
color: white;
font-family: "Hind", "Helvetica", "Arial", sans-serif;
margin: 0;
}
`;
function App() {
return (
<div>
<Global styles={globalStyles}/>
<LandingPage/>
</div>
);
};
export default App;
|