fix: restore deleted curator implementation files

This commit is contained in:
Hördle Bot
2025-12-06 21:50:59 +01:00
parent 2e1f1e599b
commit 83e1281079
7 changed files with 2700 additions and 0 deletions

11
app/curator/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
// Server-Wrapper für die Kuratoren-Seite.
// Markiert die Route als dynamisch und rendert die eigentliche Client-Komponente.
export const dynamic = 'force-dynamic';
import CuratorPageClient from './CuratorPageClient';
export default function CuratorPage() {
return <CuratorPageClient />;
}