summaryrefslogtreecommitdiff
path: root/web/src/home.tsx
diff options
context:
space:
mode:
authornavewindre <boneyaard@gmail.com>2025-11-11 08:11:24 +0100
committernavewindre <boneyaard@gmail.com>2025-11-11 08:11:24 +0100
commitf5e29189f70c5c8532916504a1a22f8c586f6e73 (patch)
tree9bf42144e608260527766e128268b380231ed95b /web/src/home.tsx
parent6442494822d12c23cdd609031c4039d3309b64f6 (diff)
new web
Diffstat (limited to 'web/src/home.tsx')
-rw-r--r--web/src/home.tsx24
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>;
+}