Initial commit with essential code files only

This commit is contained in:
2025-07-18 16:13:09 +02:00
commit 8e9b0ef8a8
33 changed files with 1703 additions and 0 deletions

11
pages/templates/nav.js Normal file
View File

@@ -0,0 +1,11 @@
import Banner from "../elements/banner";
import Links from "../elements/links";
export default function Nav() {
return (
<div className="flex justify-between px-48 py-4">
<Banner />
<Links />
</div>
);
}