blob: 217b7a4d2b1c8cd9a715d4cf36296c96bb74c928 (
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; width: max-content" class="gradient">NETWORKHEAVEN</h3>
</div>
<hr />
<div style="width: 100%; display: flex; justify-content: center">
<div style="text-align: left; width: 75%">
<h5 style="margin-bottom: 0px;">
hi, im aura and this is my website. check out my blog !!!
<br />
i will add more stuff when i have time
</h5>
</div>
</div>
<AsciiArt />
<h4><a href="https://steamcommunity.com/groups/networkheaven">STEAM</a></h4>
</Page>;
}
|