initial commit, setup

This commit is contained in:
Hunter W.
2026-03-26 23:50:36 -04:00
parent 1ec3a56705
commit 960f74a754
21 changed files with 865 additions and 120 deletions

50
components/Footer.tsx Normal file
View File

@@ -0,0 +1,50 @@
import { SITE } from "@/data/content";
export default function Footer() {
return (
<div
style={{
position: "fixed",
bottom: 0,
left: 0,
right: 0,
height: 28,
background: "var(--surface)",
borderTop: "1px solid var(--border)",
display: "flex",
alignItems: "center",
justifyContent: "space-evenly",
padding: "0 16px",
fontFamily: "var(--mono)",
fontSize: 11,
color: "var(--muted)",
zIndex: 100,
}}
>
<div style={{ display: "flex", gap: 16 }}>
<span>
(2026) - Hunter W.
</span>
</div>
<div style={{ display: "flex", gap: 16 }}>
<span>Use this design:
<a
href={SITE.source.link}
style={{
alignItems: "center",
gap: 8,
padding: "10px 12px",
fontFamily: "var(--mono)",
fontSize: 11,
fontWeight: 500,
color: "var(--fg-secondary)",
}}
>
{SITE.source.label}
</a>
</span>
</div>
</div>
);
}