chore: update components folder structure, add constants, update existing layout components, scaffold pages

This commit is contained in:
2026-05-27 19:52:41 -07:00
parent 6193c57655
commit 50fadddbe3
16 changed files with 228 additions and 237 deletions
+7 -8
View File
@@ -1,9 +1,8 @@
export default function Footer() {
return (
<div className="border-t border-neutral-800 text-start p-6">
Self-hosted · Traefik · Next.js
</div>
)
}
return (
<footer className="mx-auto w-full max-w-2xl px-6 py-6 flex items-center justify-between border-t border-neutral-800 text-xs text-neutral-500">
<span>© 2026 Angel Mankel</span>
<span>Self-hosted · Traefik · Next.js</span>
</footer>
);
}