Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 57 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/Epoch.otf
Binary file not shown.
10 changes: 10 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
@font-face {
font-family: "Epoch";
src: url("/Epoch.otf") format("opentype");
font-weight: normal;
font-style: normal;
}

:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
Expand All @@ -9,3 +16,6 @@
-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
font-family: Epoch, system-ui, Avenir, Helvetica, Arial, sans-serif;
}
28 changes: 23 additions & 5 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,18 @@ export default function Home() {
>
Hack Club
</a>
! <br />I prefer working in the CLI to any GUI app (which is why I'm
not the best at UI things XD) <br />
! <br />
I'm also a{" "}
<a
href="https://us.review.hackclub.com"
target="_blank"
className="underline hover:text-macchiato-blue"
>
Shipwright
</a>{" "}
for Hack Club's universal You Ship We Ship's! <br />
I prefer working in the CLI to any GUI app (which is why I'm not the
best at UI things XD) <br />
I've also written my own neovim, ghostty, and tmux configs, which are
the main tools I use to program. You can find them on my{" "}
<a
Expand All @@ -118,7 +128,9 @@ export default function Home() {
>
<h2 className="text-2xl text-macchiato-lavender">The Webrings</h2>

<div id="pagering">{createElement("pagering-link", { theme: "dark" })}</div>
<div id="pagering">
{createElement("pagering-link", { theme: "dark" })}
</div>

<div className="flex mt-2" id="parrotring">
<a href="https://ultrafastparrot.net/prev/kyle">
Expand All @@ -138,8 +150,14 @@ export default function Home() {
strokeLinejoin="round"
></path>
</svg>
</a>
<a href="https://ultrafastparrot.net/"><img className="w-12" src="https://ultrafastparrot.net/ultrafastparrot.gif" alt="ultrafastparrot"/></a>
</a>
<a href="https://ultrafastparrot.net/">
<img
className="w-12"
src="https://ultrafastparrot.net/ultrafastparrot.gif"
alt="ultrafastparrot"
/>
</a>
<a href="https://ultrafastparrot.net/next/kyle">
<svg
className="arrow-icon"
Expand Down