blob: 4a6e1575ce6c2ccb91fbf0de818b7e124828f384 (
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
|
/** @jsx jsx */
import { css, jsx } from "@emotion/core";
import HeaderBar from "../components/HeaderBar";
import FormListing from "../components/FormListing";
function LandingPage() {
return <div>
<HeaderBar/>
<div>
<div css={css`
display: flex;
align-items: center;
flex-direction: column;
`}>
<h1>Available Forms</h1>
<FormListing title="Ban Appeals" description="Appealing bans from the Discord server" open={true}/>
<FormListing title="Insights 2020" description="Insights about the Python Discord community" open={false}/>
</div>
</div>
</div>
}
export default LandingPage;
|