Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/** @jsxImportSource https://esm.sh/react */
export default function About() {
const linkClass = "text-sky-600 hover:text-sky-500";
return (
<div class="max-w-2xl mx-auto p-10">
<h1 class="my-3 font-bold text-6xl md:text-4xl">About</h1>
<h2 class="my-3 font-bold text-3xl my-3 md:text-xl ">Motivation</h2>
<p>
This project is inspired by the former{" "}
<a href="https://hnjobs.u-turn.dev" class={linkClass}>https://hnjobs.u-turn.dev</a>{" "}
website. The aim is to create an exceptional experience for viewing "Who's Hiring" and "Who Wants to be Hired"
posts on Hacker News. It's a work in progress so expect the experience to improve.
</p>
<h1 class="my-3 font-bold text-2xl">Contact</h1>
<p>
Contact me by email at:{" "}
<a class={linkClass} href="mailto:vawogbemi@gmail.com">
vawogbemi@gmail.com
</a>
<br></br>
I'm currently searching for a job (ideally in nyc) and here's my{" "}
<a
class={linkClass}
href="https://drive.google.com/file/d/15XVY_Fqu9FLhOAYgnXQXPXY9ZWmP-_OI/view?usp=drive_link"
>
resume
</a>
</p>
<div class={"flex w-full h-[50vh]"}>
<p class="mx-auto mt-auto">
This site was made with
<a class={linkClass} href="https://www.val.town/v/vawogbemi/whoIsHiring" target="_blank">
Val Town ❤️
</a>
</p>
</div>
{" "}
</div>
);
}
September 19, 2024