feat(discovery): /discover feed page + seed search UI + nav link

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan
2026-07-12 00:44:11 +02:00
parent 10262f053a
commit 3de7461245
3 changed files with 158 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
import { DiscoverClient } from "./discover-client";
export default function DiscoverPage() {
return (
<main>
<h1>Discover</h1>
<p>
<a href="/">Home</a> · <a href="/artists">Artists</a> · <a href="/wanted">Wanted</a> ·{" "}
<a href="/settings">Settings</a>
</p>
<DiscoverClient />
</main>
);
}