blob: 77404fda2713dfa3e22bb05a3edb46014ade7031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>;
}
|