diff options
author | 2020-09-28 02:23:04 +0100 | |
---|---|---|
committer | 2020-09-28 02:23:04 +0100 | |
commit | 01d7fdef889350a25767d5b1999f8698de7ba5a6 (patch) | |
tree | b2b7ef8d957a6cf00b0192c10e89f5f8e2a7682e /src/pages/LandingPage.tsx | |
parent | Initialize project using Create React App (diff) |
Initial commit
Diffstat (limited to 'src/pages/LandingPage.tsx')
-rw-r--r-- | src/pages/LandingPage.tsx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pages/LandingPage.tsx b/src/pages/LandingPage.tsx new file mode 100644 index 0000000..16d40c4 --- /dev/null +++ b/src/pages/LandingPage.tsx @@ -0,0 +1,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; |