Initial Paprika Next.js implementation

This commit is contained in:
2026-07-06 12:12:36 -04:00
commit 7d585484a6
38 changed files with 14824 additions and 0 deletions

5
app/page.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { LegacyPage } from "@/components/LegacyPage";
export default function HomePage() {
return <LegacyPage pageKey="home" />;
}