add nextjs style routes

This commit is contained in:
Rami Bitar
2026-06-06 13:46:56 -04:00
parent ef550e9b55
commit aa58af410d
23 changed files with 1183 additions and 855 deletions

View File

@@ -0,0 +1,6 @@
import PageEditor from "@/components/page-editor";
import page from "../page.json";
export default function EditorPage() {
return <PageEditor page={page} routeKey="/app/collections/[handle]" />;
}