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

View File

@@ -0,0 +1,8 @@
import type { LegacyPageKey } from "@/lib/legacy-pages";
import { legacyPages } from "@/lib/legacy-pages";
export function LegacyPage({ pageKey }: { pageKey: LegacyPageKey }) {
const page = legacyPages[pageKey];
return <div dangerouslySetInnerHTML={{ __html: page.html }} />;
}