diff options
Diffstat (limited to 'web/src/home.tsx')
| -rw-r--r-- | web/src/home.tsx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/web/src/home.tsx b/web/src/home.tsx new file mode 100644 index 0000000..77404fd --- /dev/null +++ b/web/src/home.tsx @@ -0,0 +1,24 @@ +import $ from "jquery"; +import * as JSX from "./jsx"; +import { Page } from "./components"; +import { AsciiArt } from "./ascii-art"; + +export default function Home() { + return <Page> + <div class="page-title"> + <h3 style="font-family: JPN24; font-size: 25px; width: min-content" class="gradient">NETWORKHEAVEN</h3> + </div> + <hr /> + <div style="width: 100%; display: flex; justify-content: center"> + <div style="text-align: left; width: 75%"> + <h4 style="font-family: JPN16; font-size: 17px; font-weight: normal; margin-bottom: 0px;"> + hi, im aura and this is my website. + <br /> + i will add more stuff when i have time + </h4> + </div> + </div> + <AsciiArt /> + <h3 style="font-family: JPN19; font-size: 20px"><a href="https://steamcommunity.com/groups/networkheaven">STEAM</a></h3> + </Page>; +} |
