blob: 16d40c472d6b6e28be0c7e60c78085f9c3a9b9df (
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
|
/** @jsx jsx */
import { jsx } from "@emotion/core";
import HeaderBar from "../components/HeaderBar";
import FormListing from "../components/FormListing";
import OAuth2Button from "../components/OAuth2Button";
function LandingPage() {
return <div>
<HeaderBar/>
<div css={{marginLeft: "20px"}}>
<h1>Welcome to Python Discord Forms</h1>
<OAuth2Button/>
<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;
|