feat: artist discography page + wanted page

This commit is contained in:
Jonathan
2026-07-11 14:11:53 +02:00
parent f7135b9046
commit 7087b2780e
4 changed files with 159 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { WantedClient } from "./wanted-client";
export default function WantedPage() {
return (
<main>
<h1>Wanted</h1>
<p><a href="/">Home</a> · <a href="/artists">Artists</a></p>
<WantedClient />
</main>
);
}