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

6
app/about/page.tsx Normal file
View File

@@ -0,0 +1,6 @@
import PageRender from "@/components/page-render";
import page from "./page.json";
export default function Page() {
return <PageRender page={page} />;
}