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

View File

@@ -0,0 +1,13 @@
'use client';
// Root /curator/specials route without locale:
// redirect users to the default English locale version.
import { redirect } from 'next/navigation';
export default function CuratorSpecialsPage() {
redirect('/en/curator/specials');
}