aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.tsx
blob: d372e2fef896d9c9be49673be5a1a567877da5db (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
28
29
30
31
32
/** @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');

@font-face {
  font-family: 'Uni Sans';
  src: url(fonts/unisans.otf) format('opentype');
}

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;