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
/** @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-4xl">About</h1>
<h2 class="my-3 font-bold text-xl my-3">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.
</p>
<h2 class="my-3 font-bold text-xl my-3">Next Steps</h2>
<ul class="list-disc ml-5">
<li>Autoscrolling</li>
<li>Location dropdown</li>
<li>Keyword filters</li>
</ul>
<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>
</p>
<p class="my-3">
This site was made with ❤️ by <a class={linkClass} href="https://www.val.town/u/vawogbemi">Victor Awogbemi</a>
{" "}
using <a href="https://val.town" class={linkClass}>Val Town</a>{" "}
(<a class={linkClass} href="https://www.val.town/v/vawogbemi/whoIsHiring" target="_blank">view the code</a>).
Please reach out with questions, feedback, or suggestions!
</p>
</div>
);
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
September 13, 2024