blob: 422440bdb49dcaa67e1c77f11cc09f615d884a7e (
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
25
26
|
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 <a href="/blog">blog</a> !!!
<br />
i'm a 20something software engineer turned mechanic, i write about computers and cars.
<br />
i also host some <a href="/pkg">compiled packages</a> for slackware linux.
</h5>
</div>
</div>
<AsciiArt />
<h4><a href="https://steamcommunity.com/groups/networkheaven">STEAM</a></h4>
</Page>;
}
|