This commit is contained in:
2025-12-20 10:32:36 +05:30
commit 91c68831bf
23 changed files with 2414 additions and 0 deletions

13
app/components/Nav.tsx Normal file
View File

@@ -0,0 +1,13 @@
export default function Nav() {
return (
<nav>
<div className="brand">420Deals.ch</div>
<div className="links">
<a href="#drop">Drop</a>
<a href="#past">Past Drops</a>
<a href="#community">Community</a>
</div>
</nav>
)
}