blob: 37785a66b79400e5fd9840e60323876205790c23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/** @jsx jsx */
import { jsx } from "@emotion/core";
import HeaderBar from "../components/HeaderBar";
import FormListing from "../components/FormListing";
function LandingPage() {
return <div>
<HeaderBar/>
<div css={{marginLeft: "20px"}}>
<h1>Welcome to Python Discord Forms</h1>
<h3>Available forms</h3>
<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>
}
export default LandingPage;
|