[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-next":3,"mdc-qfrbob-key":33,"related-repo-vercel-labs-next":3043,"related-org-vercel-labs-next":3142},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"next","build Next.js applications from JSON specs","Next.js renderer for json-render that turns JSON specs into full Next.js applications with routes, layouts, SSR, and metadata. Use when working with @json-render\u002Fnext, building Next.js apps from JSON specs, or creating AI-generated multi-page applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19],{"name":13,"slug":14,"type":15},"Next.js","next-js","tag",{"name":17,"slug":18,"type":15},"JSON","json",{"name":20,"slug":21,"type":15},"Frontend","frontend",15678,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render","2026-07-17T06:08:34.001668",null,845,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"The Generative UI framework","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fjson-render\u002Ftree\u002FHEAD\u002Fskills\u002Fnext","---\nname: next\ndescription: Next.js renderer for json-render that turns JSON specs into full Next.js applications with routes, layouts, SSR, and metadata. Use when working with @json-render\u002Fnext, building Next.js apps from JSON specs, or creating AI-generated multi-page applications.\n---\n\n# @json-render\u002Fnext\n\nNext.js renderer that converts JSON specs into full Next.js applications with routes, pages, layouts, metadata, and SSR support.\n\n## Quick Start\n\n```bash\nnpm install @json-render\u002Fcore @json-render\u002Freact @json-render\u002Fnext\n```\n\n### 1. Define Your Spec\n\n```typescript\n\u002F\u002F lib\u002Fspec.ts\nimport type { NextAppSpec } from \"@json-render\u002Fnext\";\n\nexport const spec: NextAppSpec = {\n  metadata: {\n    title: { default: \"My App\", template: \"%s | My App\" },\n    description: \"A json-render Next.js application\",\n  },\n  layouts: {\n    main: {\n      root: \"shell\",\n      elements: {\n        shell: { type: \"Container\", props: {}, children: [\"nav\", \"slot\"] },\n        nav: { type: \"NavBar\", props: { links: [\n          { href: \"\u002F\", label: \"Home\" },\n          { href: \"\u002Fabout\", label: \"About\" },\n        ]}, children: [] },\n        slot: { type: \"Slot\", props: {}, children: [] },\n      },\n    },\n  },\n  routes: {\n    \"\u002F\": {\n      layout: \"main\",\n      metadata: { title: \"Home\" },\n      page: {\n        root: \"hero\",\n        elements: {\n          hero: { type: \"Card\", props: { title: \"Welcome\" }, children: [] },\n        },\n      },\n    },\n    \"\u002Fabout\": {\n      layout: \"main\",\n      metadata: { title: \"About\" },\n      page: {\n        root: \"content\",\n        elements: {\n          content: { type: \"Card\", props: { title: \"About Us\" }, children: [] },\n        },\n      },\n    },\n  },\n};\n```\n\n### 2. Create the App\n\n```typescript\n\u002F\u002F lib\u002Fapp.ts\nimport { createNextApp } from \"@json-render\u002Fnext\u002Fserver\";\nimport { spec } from \".\u002Fspec\";\n\nexport const { Page, generateMetadata, generateStaticParams } = createNextApp({\n  spec,\n  loaders: {\n    \u002F\u002F Server-side data loaders (optional)\n    loadPost: async ({ slug }) => {\n      const post = await getPost(slug as string);\n      return { post };\n    },\n  },\n});\n```\n\n### 3. Wire Up Route Files\n\n```tsx\n\u002F\u002F app\u002F[[...slug]]\u002Fpage.tsx\nexport { Page as default, generateMetadata, generateStaticParams } from \"@\u002Flib\u002Fapp\";\n```\n\n```tsx\n\u002F\u002F app\u002F[[...slug]]\u002Flayout.tsx\nimport { NextAppProvider } from \"@json-render\u002Fnext\";\nimport { registry, handlers } from \"@\u002Flib\u002Fregistry\";\n\nexport default function Layout({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\">\n      \u003Cbody>\n        \u003CNextAppProvider registry={registry} handlers={handlers}>\n          {children}\n        \u003C\u002FNextAppProvider>\n      \u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  );\n}\n```\n\n## Key Concepts\n\n### NextAppSpec\n\nThe top-level spec defines an entire Next.js application:\n\n- **metadata**: Root-level SEO metadata (title template, description, OpenGraph)\n- **layouts**: Reusable layout element trees (each must include a `Slot` component)\n- **routes**: Route definitions keyed by URL pattern\n- **state**: Global initial state shared across all routes\n\n### Route Patterns\n\nRoutes use Next.js URL conventions:\n\n- `\"\u002F\"` -- home page\n- `\"\u002Fabout\"` -- static route\n- `\"\u002Fblog\u002F[slug]\"` -- dynamic segment\n- `\"\u002Fdocs\u002F[...path]\"` -- catch-all segment\n- `\"\u002Fsettings\u002F[[...path]]\"` -- optional catch-all segment\n\n### Layouts\n\nLayouts wrap page content. Every layout MUST include a `Slot` component where page content will be rendered. Layouts are defined once in `spec.layouts` and referenced by routes via the `layout` field.\n\n### Built-in Components\n\n- **Slot**: Placeholder in layouts where page content is rendered\n- **Link**: Client-side navigation link (wraps `next\u002Flink`)\n\n### Built-in Actions\n\n- **setState**: Update state value. Params: `{ statePath, value }`\n- **pushState**: Append to array. Params: `{ statePath, value, clearStatePath? }`\n- **removeState**: Remove from array by index. Params: `{ statePath, index }`\n- **navigate**: Client-side navigation. Params: `{ href }`\n\n### Data Loaders\n\nServer-side async functions that run in the Server Component before rendering. Results are merged into the page's initial state.\n\n```typescript\ncreateNextApp({\n  spec,\n  loaders: {\n    loadPost: async ({ slug }) => {\n      const post = await db.post.findUnique({ where: { slug } });\n      return { post };\n    },\n  },\n});\n```\n\n### SSR\n\nPages are server-rendered automatically. The `createNextApp` `Page` component is an async Server Component that:\n\n1. Matches the route from the spec\n2. Runs server-side data loaders\n3. Generates metadata\n4. Passes the resolved spec to the client renderer for hydration\n\n### Entry Points\n\n- `@json-render\u002Fnext` -- Client components (NextAppProvider, PageRenderer, Link)\n- `@json-render\u002Fnext\u002Fserver` -- Server utilities (createNextApp, matchRoute, schema)\n\n## API Reference\n\n### Server Exports (`@json-render\u002Fnext\u002Fserver`)\n\n- `createNextApp(options)` -- Create Page, generateMetadata, generateStaticParams\n- `schema` -- Custom schema for Next.js apps (for AI catalog generation)\n- `matchRoute(spec, pathname)` -- Match a URL to a route spec\n- `resolveMetadata(spec, route)` -- Resolve metadata for a route\n- `slugToPath(slug)` -- Convert catch-all slug array to pathname\n- `collectStaticParams(spec)` -- Collect static params for all routes\n\n### Client Exports (`@json-render\u002Fnext`)\n\n- `NextAppProvider` -- Context provider for registry and handlers\n- `PageRenderer` -- Renders a page spec with optional layout\n- `NextErrorBoundary` -- Error boundary component\n- `NextLoading` -- Loading state component\n- `NextNotFound` -- Not-found component\n- `Link` -- Built-in navigation component (wraps next\u002Flink)\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,53,60,105,112,1456,1462,1810,1816,1898,2285,2291,2297,2302,2355,2361,2366,2424,2429,2457,2463,2492,2498,2565,2571,2576,2792,2798,2818,2842,2848,2871,2877,2889,2958,2970,3037],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"json-rendernext",[44],{"type":45,"value":46},"text","@json-render\u002Fnext",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51],{"type":45,"value":52},"Next.js renderer that converts JSON specs into full Next.js applications with routes, pages, layouts, metadata, and SSR support.",{"type":39,"tag":54,"props":55,"children":57},"h2",{"id":56},"quick-start",[58],{"type":45,"value":59},"Quick Start",{"type":39,"tag":61,"props":62,"children":67},"pre",{"className":63,"code":64,"language":65,"meta":66,"style":66},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @json-render\u002Fcore @json-render\u002Freact @json-render\u002Fnext\n","bash","",[68],{"type":39,"tag":69,"props":70,"children":71},"code",{"__ignoreMap":66},[72],{"type":39,"tag":73,"props":74,"children":77},"span",{"class":75,"line":76},"line",1,[78,84,90,95,100],{"type":39,"tag":73,"props":79,"children":81},{"style":80},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[82],{"type":45,"value":83},"npm",{"type":39,"tag":73,"props":85,"children":87},{"style":86},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[88],{"type":45,"value":89}," install",{"type":39,"tag":73,"props":91,"children":92},{"style":86},[93],{"type":45,"value":94}," @json-render\u002Fcore",{"type":39,"tag":73,"props":96,"children":97},{"style":86},[98],{"type":45,"value":99}," @json-render\u002Freact",{"type":39,"tag":73,"props":101,"children":102},{"style":86},[103],{"type":45,"value":104}," @json-render\u002Fnext\n",{"type":39,"tag":106,"props":107,"children":109},"h3",{"id":108},"_1-define-your-spec",[110],{"type":45,"value":111},"1. Define Your Spec",{"type":39,"tag":61,"props":113,"children":117},{"className":114,"code":115,"language":116,"meta":66,"style":66},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F lib\u002Fspec.ts\nimport type { NextAppSpec } from \"@json-render\u002Fnext\";\n\nexport const spec: NextAppSpec = {\n  metadata: {\n    title: { default: \"My App\", template: \"%s | My App\" },\n    description: \"A json-render Next.js application\",\n  },\n  layouts: {\n    main: {\n      root: \"shell\",\n      elements: {\n        shell: { type: \"Container\", props: {}, children: [\"nav\", \"slot\"] },\n        nav: { type: \"NavBar\", props: { links: [\n          { href: \"\u002F\", label: \"Home\" },\n          { href: \"\u002Fabout\", label: \"About\" },\n        ]}, children: [] },\n        slot: { type: \"Slot\", props: {}, children: [] },\n      },\n    },\n  },\n  routes: {\n    \"\u002F\": {\n      layout: \"main\",\n      metadata: { title: \"Home\" },\n      page: {\n        root: \"hero\",\n        elements: {\n          hero: { type: \"Card\", props: { title: \"Welcome\" }, children: [] },\n        },\n      },\n    },\n    \"\u002Fabout\": {\n      layout: \"main\",\n      metadata: { title: \"About\" },\n      page: {\n        root: \"content\",\n        elements: {\n          content: { type: \"Card\", props: { title: \"About Us\" }, children: [] },\n        },\n      },\n    },\n  },\n};\n","typescript",[118],{"type":39,"tag":69,"props":119,"children":120},{"__ignoreMap":66},[121,130,186,196,235,253,324,355,364,381,398,428,445,555,623,684,742,773,843,852,861,869,886,911,941,983,1000,1030,1047,1143,1152,1160,1168,1192,1220,1260,1276,1305,1321,1415,1423,1431,1439,1447],{"type":39,"tag":73,"props":122,"children":123},{"class":75,"line":76},[124],{"type":39,"tag":73,"props":125,"children":127},{"style":126},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[128],{"type":45,"value":129},"\u002F\u002F lib\u002Fspec.ts\n",{"type":39,"tag":73,"props":131,"children":133},{"class":75,"line":132},2,[134,140,145,151,157,162,167,172,176,181],{"type":39,"tag":73,"props":135,"children":137},{"style":136},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[138],{"type":45,"value":139},"import",{"type":39,"tag":73,"props":141,"children":142},{"style":136},[143],{"type":45,"value":144}," type",{"type":39,"tag":73,"props":146,"children":148},{"style":147},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[149],{"type":45,"value":150}," {",{"type":39,"tag":73,"props":152,"children":154},{"style":153},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[155],{"type":45,"value":156}," NextAppSpec",{"type":39,"tag":73,"props":158,"children":159},{"style":147},[160],{"type":45,"value":161}," }",{"type":39,"tag":73,"props":163,"children":164},{"style":136},[165],{"type":45,"value":166}," from",{"type":39,"tag":73,"props":168,"children":169},{"style":147},[170],{"type":45,"value":171}," \"",{"type":39,"tag":73,"props":173,"children":174},{"style":86},[175],{"type":45,"value":46},{"type":39,"tag":73,"props":177,"children":178},{"style":147},[179],{"type":45,"value":180},"\"",{"type":39,"tag":73,"props":182,"children":183},{"style":147},[184],{"type":45,"value":185},";\n",{"type":39,"tag":73,"props":187,"children":189},{"class":75,"line":188},3,[190],{"type":39,"tag":73,"props":191,"children":193},{"emptyLinePlaceholder":192},true,[194],{"type":45,"value":195},"\n",{"type":39,"tag":73,"props":197,"children":199},{"class":75,"line":198},4,[200,205,211,216,221,225,230],{"type":39,"tag":73,"props":201,"children":202},{"style":136},[203],{"type":45,"value":204},"export",{"type":39,"tag":73,"props":206,"children":208},{"style":207},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[209],{"type":45,"value":210}," const",{"type":39,"tag":73,"props":212,"children":213},{"style":153},[214],{"type":45,"value":215}," spec",{"type":39,"tag":73,"props":217,"children":218},{"style":147},[219],{"type":45,"value":220},":",{"type":39,"tag":73,"props":222,"children":223},{"style":80},[224],{"type":45,"value":156},{"type":39,"tag":73,"props":226,"children":227},{"style":147},[228],{"type":45,"value":229}," =",{"type":39,"tag":73,"props":231,"children":232},{"style":147},[233],{"type":45,"value":234}," {\n",{"type":39,"tag":73,"props":236,"children":238},{"class":75,"line":237},5,[239,245,249],{"type":39,"tag":73,"props":240,"children":242},{"style":241},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[243],{"type":45,"value":244},"  metadata",{"type":39,"tag":73,"props":246,"children":247},{"style":147},[248],{"type":45,"value":220},{"type":39,"tag":73,"props":250,"children":251},{"style":147},[252],{"type":45,"value":234},{"type":39,"tag":73,"props":254,"children":256},{"class":75,"line":255},6,[257,262,266,270,275,279,283,288,292,297,302,306,310,315,319],{"type":39,"tag":73,"props":258,"children":259},{"style":241},[260],{"type":45,"value":261},"    title",{"type":39,"tag":73,"props":263,"children":264},{"style":147},[265],{"type":45,"value":220},{"type":39,"tag":73,"props":267,"children":268},{"style":147},[269],{"type":45,"value":150},{"type":39,"tag":73,"props":271,"children":272},{"style":241},[273],{"type":45,"value":274}," default",{"type":39,"tag":73,"props":276,"children":277},{"style":147},[278],{"type":45,"value":220},{"type":39,"tag":73,"props":280,"children":281},{"style":147},[282],{"type":45,"value":171},{"type":39,"tag":73,"props":284,"children":285},{"style":86},[286],{"type":45,"value":287},"My App",{"type":39,"tag":73,"props":289,"children":290},{"style":147},[291],{"type":45,"value":180},{"type":39,"tag":73,"props":293,"children":294},{"style":147},[295],{"type":45,"value":296},",",{"type":39,"tag":73,"props":298,"children":299},{"style":241},[300],{"type":45,"value":301}," template",{"type":39,"tag":73,"props":303,"children":304},{"style":147},[305],{"type":45,"value":220},{"type":39,"tag":73,"props":307,"children":308},{"style":147},[309],{"type":45,"value":171},{"type":39,"tag":73,"props":311,"children":312},{"style":86},[313],{"type":45,"value":314},"%s | My App",{"type":39,"tag":73,"props":316,"children":317},{"style":147},[318],{"type":45,"value":180},{"type":39,"tag":73,"props":320,"children":321},{"style":147},[322],{"type":45,"value":323}," },\n",{"type":39,"tag":73,"props":325,"children":327},{"class":75,"line":326},7,[328,333,337,341,346,350],{"type":39,"tag":73,"props":329,"children":330},{"style":241},[331],{"type":45,"value":332},"    description",{"type":39,"tag":73,"props":334,"children":335},{"style":147},[336],{"type":45,"value":220},{"type":39,"tag":73,"props":338,"children":339},{"style":147},[340],{"type":45,"value":171},{"type":39,"tag":73,"props":342,"children":343},{"style":86},[344],{"type":45,"value":345},"A json-render Next.js application",{"type":39,"tag":73,"props":347,"children":348},{"style":147},[349],{"type":45,"value":180},{"type":39,"tag":73,"props":351,"children":352},{"style":147},[353],{"type":45,"value":354},",\n",{"type":39,"tag":73,"props":356,"children":358},{"class":75,"line":357},8,[359],{"type":39,"tag":73,"props":360,"children":361},{"style":147},[362],{"type":45,"value":363},"  },\n",{"type":39,"tag":73,"props":365,"children":367},{"class":75,"line":366},9,[368,373,377],{"type":39,"tag":73,"props":369,"children":370},{"style":241},[371],{"type":45,"value":372},"  layouts",{"type":39,"tag":73,"props":374,"children":375},{"style":147},[376],{"type":45,"value":220},{"type":39,"tag":73,"props":378,"children":379},{"style":147},[380],{"type":45,"value":234},{"type":39,"tag":73,"props":382,"children":384},{"class":75,"line":383},10,[385,390,394],{"type":39,"tag":73,"props":386,"children":387},{"style":241},[388],{"type":45,"value":389},"    main",{"type":39,"tag":73,"props":391,"children":392},{"style":147},[393],{"type":45,"value":220},{"type":39,"tag":73,"props":395,"children":396},{"style":147},[397],{"type":45,"value":234},{"type":39,"tag":73,"props":399,"children":401},{"class":75,"line":400},11,[402,407,411,415,420,424],{"type":39,"tag":73,"props":403,"children":404},{"style":241},[405],{"type":45,"value":406},"      root",{"type":39,"tag":73,"props":408,"children":409},{"style":147},[410],{"type":45,"value":220},{"type":39,"tag":73,"props":412,"children":413},{"style":147},[414],{"type":45,"value":171},{"type":39,"tag":73,"props":416,"children":417},{"style":86},[418],{"type":45,"value":419},"shell",{"type":39,"tag":73,"props":421,"children":422},{"style":147},[423],{"type":45,"value":180},{"type":39,"tag":73,"props":425,"children":426},{"style":147},[427],{"type":45,"value":354},{"type":39,"tag":73,"props":429,"children":431},{"class":75,"line":430},12,[432,437,441],{"type":39,"tag":73,"props":433,"children":434},{"style":241},[435],{"type":45,"value":436},"      elements",{"type":39,"tag":73,"props":438,"children":439},{"style":147},[440],{"type":45,"value":220},{"type":39,"tag":73,"props":442,"children":443},{"style":147},[444],{"type":45,"value":234},{"type":39,"tag":73,"props":446,"children":448},{"class":75,"line":447},13,[449,454,458,462,466,470,474,479,483,487,492,496,501,506,510,515,519,524,528,532,536,541,545,550],{"type":39,"tag":73,"props":450,"children":451},{"style":241},[452],{"type":45,"value":453},"        shell",{"type":39,"tag":73,"props":455,"children":456},{"style":147},[457],{"type":45,"value":220},{"type":39,"tag":73,"props":459,"children":460},{"style":147},[461],{"type":45,"value":150},{"type":39,"tag":73,"props":463,"children":464},{"style":241},[465],{"type":45,"value":144},{"type":39,"tag":73,"props":467,"children":468},{"style":147},[469],{"type":45,"value":220},{"type":39,"tag":73,"props":471,"children":472},{"style":147},[473],{"type":45,"value":171},{"type":39,"tag":73,"props":475,"children":476},{"style":86},[477],{"type":45,"value":478},"Container",{"type":39,"tag":73,"props":480,"children":481},{"style":147},[482],{"type":45,"value":180},{"type":39,"tag":73,"props":484,"children":485},{"style":147},[486],{"type":45,"value":296},{"type":39,"tag":73,"props":488,"children":489},{"style":241},[490],{"type":45,"value":491}," props",{"type":39,"tag":73,"props":493,"children":494},{"style":147},[495],{"type":45,"value":220},{"type":39,"tag":73,"props":497,"children":498},{"style":147},[499],{"type":45,"value":500}," {},",{"type":39,"tag":73,"props":502,"children":503},{"style":241},[504],{"type":45,"value":505}," children",{"type":39,"tag":73,"props":507,"children":508},{"style":147},[509],{"type":45,"value":220},{"type":39,"tag":73,"props":511,"children":512},{"style":153},[513],{"type":45,"value":514}," [",{"type":39,"tag":73,"props":516,"children":517},{"style":147},[518],{"type":45,"value":180},{"type":39,"tag":73,"props":520,"children":521},{"style":86},[522],{"type":45,"value":523},"nav",{"type":39,"tag":73,"props":525,"children":526},{"style":147},[527],{"type":45,"value":180},{"type":39,"tag":73,"props":529,"children":530},{"style":147},[531],{"type":45,"value":296},{"type":39,"tag":73,"props":533,"children":534},{"style":147},[535],{"type":45,"value":171},{"type":39,"tag":73,"props":537,"children":538},{"style":86},[539],{"type":45,"value":540},"slot",{"type":39,"tag":73,"props":542,"children":543},{"style":147},[544],{"type":45,"value":180},{"type":39,"tag":73,"props":546,"children":547},{"style":153},[548],{"type":45,"value":549},"] ",{"type":39,"tag":73,"props":551,"children":552},{"style":147},[553],{"type":45,"value":554},"},\n",{"type":39,"tag":73,"props":556,"children":558},{"class":75,"line":557},14,[559,564,568,572,576,580,584,589,593,597,601,605,609,614,618],{"type":39,"tag":73,"props":560,"children":561},{"style":241},[562],{"type":45,"value":563},"        nav",{"type":39,"tag":73,"props":565,"children":566},{"style":147},[567],{"type":45,"value":220},{"type":39,"tag":73,"props":569,"children":570},{"style":147},[571],{"type":45,"value":150},{"type":39,"tag":73,"props":573,"children":574},{"style":241},[575],{"type":45,"value":144},{"type":39,"tag":73,"props":577,"children":578},{"style":147},[579],{"type":45,"value":220},{"type":39,"tag":73,"props":581,"children":582},{"style":147},[583],{"type":45,"value":171},{"type":39,"tag":73,"props":585,"children":586},{"style":86},[587],{"type":45,"value":588},"NavBar",{"type":39,"tag":73,"props":590,"children":591},{"style":147},[592],{"type":45,"value":180},{"type":39,"tag":73,"props":594,"children":595},{"style":147},[596],{"type":45,"value":296},{"type":39,"tag":73,"props":598,"children":599},{"style":241},[600],{"type":45,"value":491},{"type":39,"tag":73,"props":602,"children":603},{"style":147},[604],{"type":45,"value":220},{"type":39,"tag":73,"props":606,"children":607},{"style":147},[608],{"type":45,"value":150},{"type":39,"tag":73,"props":610,"children":611},{"style":241},[612],{"type":45,"value":613}," links",{"type":39,"tag":73,"props":615,"children":616},{"style":147},[617],{"type":45,"value":220},{"type":39,"tag":73,"props":619,"children":620},{"style":153},[621],{"type":45,"value":622}," [\n",{"type":39,"tag":73,"props":624,"children":626},{"class":75,"line":625},15,[627,632,637,641,645,650,654,658,663,667,671,676,680],{"type":39,"tag":73,"props":628,"children":629},{"style":147},[630],{"type":45,"value":631},"          {",{"type":39,"tag":73,"props":633,"children":634},{"style":241},[635],{"type":45,"value":636}," href",{"type":39,"tag":73,"props":638,"children":639},{"style":147},[640],{"type":45,"value":220},{"type":39,"tag":73,"props":642,"children":643},{"style":147},[644],{"type":45,"value":171},{"type":39,"tag":73,"props":646,"children":647},{"style":86},[648],{"type":45,"value":649},"\u002F",{"type":39,"tag":73,"props":651,"children":652},{"style":147},[653],{"type":45,"value":180},{"type":39,"tag":73,"props":655,"children":656},{"style":147},[657],{"type":45,"value":296},{"type":39,"tag":73,"props":659,"children":660},{"style":241},[661],{"type":45,"value":662}," label",{"type":39,"tag":73,"props":664,"children":665},{"style":147},[666],{"type":45,"value":220},{"type":39,"tag":73,"props":668,"children":669},{"style":147},[670],{"type":45,"value":171},{"type":39,"tag":73,"props":672,"children":673},{"style":86},[674],{"type":45,"value":675},"Home",{"type":39,"tag":73,"props":677,"children":678},{"style":147},[679],{"type":45,"value":180},{"type":39,"tag":73,"props":681,"children":682},{"style":147},[683],{"type":45,"value":323},{"type":39,"tag":73,"props":685,"children":687},{"class":75,"line":686},16,[688,692,696,700,704,709,713,717,721,725,729,734,738],{"type":39,"tag":73,"props":689,"children":690},{"style":147},[691],{"type":45,"value":631},{"type":39,"tag":73,"props":693,"children":694},{"style":241},[695],{"type":45,"value":636},{"type":39,"tag":73,"props":697,"children":698},{"style":147},[699],{"type":45,"value":220},{"type":39,"tag":73,"props":701,"children":702},{"style":147},[703],{"type":45,"value":171},{"type":39,"tag":73,"props":705,"children":706},{"style":86},[707],{"type":45,"value":708},"\u002Fabout",{"type":39,"tag":73,"props":710,"children":711},{"style":147},[712],{"type":45,"value":180},{"type":39,"tag":73,"props":714,"children":715},{"style":147},[716],{"type":45,"value":296},{"type":39,"tag":73,"props":718,"children":719},{"style":241},[720],{"type":45,"value":662},{"type":39,"tag":73,"props":722,"children":723},{"style":147},[724],{"type":45,"value":220},{"type":39,"tag":73,"props":726,"children":727},{"style":147},[728],{"type":45,"value":171},{"type":39,"tag":73,"props":730,"children":731},{"style":86},[732],{"type":45,"value":733},"About",{"type":39,"tag":73,"props":735,"children":736},{"style":147},[737],{"type":45,"value":180},{"type":39,"tag":73,"props":739,"children":740},{"style":147},[741],{"type":45,"value":323},{"type":39,"tag":73,"props":743,"children":745},{"class":75,"line":744},17,[746,751,756,760,764,769],{"type":39,"tag":73,"props":747,"children":748},{"style":153},[749],{"type":45,"value":750},"        ]",{"type":39,"tag":73,"props":752,"children":753},{"style":147},[754],{"type":45,"value":755},"},",{"type":39,"tag":73,"props":757,"children":758},{"style":241},[759],{"type":45,"value":505},{"type":39,"tag":73,"props":761,"children":762},{"style":147},[763],{"type":45,"value":220},{"type":39,"tag":73,"props":765,"children":766},{"style":153},[767],{"type":45,"value":768}," [] ",{"type":39,"tag":73,"props":770,"children":771},{"style":147},[772],{"type":45,"value":554},{"type":39,"tag":73,"props":774,"children":776},{"class":75,"line":775},18,[777,782,786,790,794,798,802,807,811,815,819,823,827,831,835,839],{"type":39,"tag":73,"props":778,"children":779},{"style":241},[780],{"type":45,"value":781},"        slot",{"type":39,"tag":73,"props":783,"children":784},{"style":147},[785],{"type":45,"value":220},{"type":39,"tag":73,"props":787,"children":788},{"style":147},[789],{"type":45,"value":150},{"type":39,"tag":73,"props":791,"children":792},{"style":241},[793],{"type":45,"value":144},{"type":39,"tag":73,"props":795,"children":796},{"style":147},[797],{"type":45,"value":220},{"type":39,"tag":73,"props":799,"children":800},{"style":147},[801],{"type":45,"value":171},{"type":39,"tag":73,"props":803,"children":804},{"style":86},[805],{"type":45,"value":806},"Slot",{"type":39,"tag":73,"props":808,"children":809},{"style":147},[810],{"type":45,"value":180},{"type":39,"tag":73,"props":812,"children":813},{"style":147},[814],{"type":45,"value":296},{"type":39,"tag":73,"props":816,"children":817},{"style":241},[818],{"type":45,"value":491},{"type":39,"tag":73,"props":820,"children":821},{"style":147},[822],{"type":45,"value":220},{"type":39,"tag":73,"props":824,"children":825},{"style":147},[826],{"type":45,"value":500},{"type":39,"tag":73,"props":828,"children":829},{"style":241},[830],{"type":45,"value":505},{"type":39,"tag":73,"props":832,"children":833},{"style":147},[834],{"type":45,"value":220},{"type":39,"tag":73,"props":836,"children":837},{"style":153},[838],{"type":45,"value":768},{"type":39,"tag":73,"props":840,"children":841},{"style":147},[842],{"type":45,"value":554},{"type":39,"tag":73,"props":844,"children":846},{"class":75,"line":845},19,[847],{"type":39,"tag":73,"props":848,"children":849},{"style":147},[850],{"type":45,"value":851},"      },\n",{"type":39,"tag":73,"props":853,"children":855},{"class":75,"line":854},20,[856],{"type":39,"tag":73,"props":857,"children":858},{"style":147},[859],{"type":45,"value":860},"    },\n",{"type":39,"tag":73,"props":862,"children":864},{"class":75,"line":863},21,[865],{"type":39,"tag":73,"props":866,"children":867},{"style":147},[868],{"type":45,"value":363},{"type":39,"tag":73,"props":870,"children":872},{"class":75,"line":871},22,[873,878,882],{"type":39,"tag":73,"props":874,"children":875},{"style":241},[876],{"type":45,"value":877},"  routes",{"type":39,"tag":73,"props":879,"children":880},{"style":147},[881],{"type":45,"value":220},{"type":39,"tag":73,"props":883,"children":884},{"style":147},[885],{"type":45,"value":234},{"type":39,"tag":73,"props":887,"children":889},{"class":75,"line":888},23,[890,895,899,903,907],{"type":39,"tag":73,"props":891,"children":892},{"style":147},[893],{"type":45,"value":894},"    \"",{"type":39,"tag":73,"props":896,"children":897},{"style":241},[898],{"type":45,"value":649},{"type":39,"tag":73,"props":900,"children":901},{"style":147},[902],{"type":45,"value":180},{"type":39,"tag":73,"props":904,"children":905},{"style":147},[906],{"type":45,"value":220},{"type":39,"tag":73,"props":908,"children":909},{"style":147},[910],{"type":45,"value":234},{"type":39,"tag":73,"props":912,"children":914},{"class":75,"line":913},24,[915,920,924,928,933,937],{"type":39,"tag":73,"props":916,"children":917},{"style":241},[918],{"type":45,"value":919},"      layout",{"type":39,"tag":73,"props":921,"children":922},{"style":147},[923],{"type":45,"value":220},{"type":39,"tag":73,"props":925,"children":926},{"style":147},[927],{"type":45,"value":171},{"type":39,"tag":73,"props":929,"children":930},{"style":86},[931],{"type":45,"value":932},"main",{"type":39,"tag":73,"props":934,"children":935},{"style":147},[936],{"type":45,"value":180},{"type":39,"tag":73,"props":938,"children":939},{"style":147},[940],{"type":45,"value":354},{"type":39,"tag":73,"props":942,"children":944},{"class":75,"line":943},25,[945,950,954,958,963,967,971,975,979],{"type":39,"tag":73,"props":946,"children":947},{"style":241},[948],{"type":45,"value":949},"      metadata",{"type":39,"tag":73,"props":951,"children":952},{"style":147},[953],{"type":45,"value":220},{"type":39,"tag":73,"props":955,"children":956},{"style":147},[957],{"type":45,"value":150},{"type":39,"tag":73,"props":959,"children":960},{"style":241},[961],{"type":45,"value":962}," title",{"type":39,"tag":73,"props":964,"children":965},{"style":147},[966],{"type":45,"value":220},{"type":39,"tag":73,"props":968,"children":969},{"style":147},[970],{"type":45,"value":171},{"type":39,"tag":73,"props":972,"children":973},{"style":86},[974],{"type":45,"value":675},{"type":39,"tag":73,"props":976,"children":977},{"style":147},[978],{"type":45,"value":180},{"type":39,"tag":73,"props":980,"children":981},{"style":147},[982],{"type":45,"value":323},{"type":39,"tag":73,"props":984,"children":986},{"class":75,"line":985},26,[987,992,996],{"type":39,"tag":73,"props":988,"children":989},{"style":241},[990],{"type":45,"value":991},"      page",{"type":39,"tag":73,"props":993,"children":994},{"style":147},[995],{"type":45,"value":220},{"type":39,"tag":73,"props":997,"children":998},{"style":147},[999],{"type":45,"value":234},{"type":39,"tag":73,"props":1001,"children":1003},{"class":75,"line":1002},27,[1004,1009,1013,1017,1022,1026],{"type":39,"tag":73,"props":1005,"children":1006},{"style":241},[1007],{"type":45,"value":1008},"        root",{"type":39,"tag":73,"props":1010,"children":1011},{"style":147},[1012],{"type":45,"value":220},{"type":39,"tag":73,"props":1014,"children":1015},{"style":147},[1016],{"type":45,"value":171},{"type":39,"tag":73,"props":1018,"children":1019},{"style":86},[1020],{"type":45,"value":1021},"hero",{"type":39,"tag":73,"props":1023,"children":1024},{"style":147},[1025],{"type":45,"value":180},{"type":39,"tag":73,"props":1027,"children":1028},{"style":147},[1029],{"type":45,"value":354},{"type":39,"tag":73,"props":1031,"children":1033},{"class":75,"line":1032},28,[1034,1039,1043],{"type":39,"tag":73,"props":1035,"children":1036},{"style":241},[1037],{"type":45,"value":1038},"        elements",{"type":39,"tag":73,"props":1040,"children":1041},{"style":147},[1042],{"type":45,"value":220},{"type":39,"tag":73,"props":1044,"children":1045},{"style":147},[1046],{"type":45,"value":234},{"type":39,"tag":73,"props":1048,"children":1050},{"class":75,"line":1049},29,[1051,1056,1060,1064,1068,1072,1076,1081,1085,1089,1093,1097,1101,1105,1109,1113,1118,1122,1127,1131,1135,1139],{"type":39,"tag":73,"props":1052,"children":1053},{"style":241},[1054],{"type":45,"value":1055},"          hero",{"type":39,"tag":73,"props":1057,"children":1058},{"style":147},[1059],{"type":45,"value":220},{"type":39,"tag":73,"props":1061,"children":1062},{"style":147},[1063],{"type":45,"value":150},{"type":39,"tag":73,"props":1065,"children":1066},{"style":241},[1067],{"type":45,"value":144},{"type":39,"tag":73,"props":1069,"children":1070},{"style":147},[1071],{"type":45,"value":220},{"type":39,"tag":73,"props":1073,"children":1074},{"style":147},[1075],{"type":45,"value":171},{"type":39,"tag":73,"props":1077,"children":1078},{"style":86},[1079],{"type":45,"value":1080},"Card",{"type":39,"tag":73,"props":1082,"children":1083},{"style":147},[1084],{"type":45,"value":180},{"type":39,"tag":73,"props":1086,"children":1087},{"style":147},[1088],{"type":45,"value":296},{"type":39,"tag":73,"props":1090,"children":1091},{"style":241},[1092],{"type":45,"value":491},{"type":39,"tag":73,"props":1094,"children":1095},{"style":147},[1096],{"type":45,"value":220},{"type":39,"tag":73,"props":1098,"children":1099},{"style":147},[1100],{"type":45,"value":150},{"type":39,"tag":73,"props":1102,"children":1103},{"style":241},[1104],{"type":45,"value":962},{"type":39,"tag":73,"props":1106,"children":1107},{"style":147},[1108],{"type":45,"value":220},{"type":39,"tag":73,"props":1110,"children":1111},{"style":147},[1112],{"type":45,"value":171},{"type":39,"tag":73,"props":1114,"children":1115},{"style":86},[1116],{"type":45,"value":1117},"Welcome",{"type":39,"tag":73,"props":1119,"children":1120},{"style":147},[1121],{"type":45,"value":180},{"type":39,"tag":73,"props":1123,"children":1124},{"style":147},[1125],{"type":45,"value":1126}," },",{"type":39,"tag":73,"props":1128,"children":1129},{"style":241},[1130],{"type":45,"value":505},{"type":39,"tag":73,"props":1132,"children":1133},{"style":147},[1134],{"type":45,"value":220},{"type":39,"tag":73,"props":1136,"children":1137},{"style":153},[1138],{"type":45,"value":768},{"type":39,"tag":73,"props":1140,"children":1141},{"style":147},[1142],{"type":45,"value":554},{"type":39,"tag":73,"props":1144,"children":1146},{"class":75,"line":1145},30,[1147],{"type":39,"tag":73,"props":1148,"children":1149},{"style":147},[1150],{"type":45,"value":1151},"        },\n",{"type":39,"tag":73,"props":1153,"children":1155},{"class":75,"line":1154},31,[1156],{"type":39,"tag":73,"props":1157,"children":1158},{"style":147},[1159],{"type":45,"value":851},{"type":39,"tag":73,"props":1161,"children":1163},{"class":75,"line":1162},32,[1164],{"type":39,"tag":73,"props":1165,"children":1166},{"style":147},[1167],{"type":45,"value":860},{"type":39,"tag":73,"props":1169,"children":1171},{"class":75,"line":1170},33,[1172,1176,1180,1184,1188],{"type":39,"tag":73,"props":1173,"children":1174},{"style":147},[1175],{"type":45,"value":894},{"type":39,"tag":73,"props":1177,"children":1178},{"style":241},[1179],{"type":45,"value":708},{"type":39,"tag":73,"props":1181,"children":1182},{"style":147},[1183],{"type":45,"value":180},{"type":39,"tag":73,"props":1185,"children":1186},{"style":147},[1187],{"type":45,"value":220},{"type":39,"tag":73,"props":1189,"children":1190},{"style":147},[1191],{"type":45,"value":234},{"type":39,"tag":73,"props":1193,"children":1195},{"class":75,"line":1194},34,[1196,1200,1204,1208,1212,1216],{"type":39,"tag":73,"props":1197,"children":1198},{"style":241},[1199],{"type":45,"value":919},{"type":39,"tag":73,"props":1201,"children":1202},{"style":147},[1203],{"type":45,"value":220},{"type":39,"tag":73,"props":1205,"children":1206},{"style":147},[1207],{"type":45,"value":171},{"type":39,"tag":73,"props":1209,"children":1210},{"style":86},[1211],{"type":45,"value":932},{"type":39,"tag":73,"props":1213,"children":1214},{"style":147},[1215],{"type":45,"value":180},{"type":39,"tag":73,"props":1217,"children":1218},{"style":147},[1219],{"type":45,"value":354},{"type":39,"tag":73,"props":1221,"children":1223},{"class":75,"line":1222},35,[1224,1228,1232,1236,1240,1244,1248,1252,1256],{"type":39,"tag":73,"props":1225,"children":1226},{"style":241},[1227],{"type":45,"value":949},{"type":39,"tag":73,"props":1229,"children":1230},{"style":147},[1231],{"type":45,"value":220},{"type":39,"tag":73,"props":1233,"children":1234},{"style":147},[1235],{"type":45,"value":150},{"type":39,"tag":73,"props":1237,"children":1238},{"style":241},[1239],{"type":45,"value":962},{"type":39,"tag":73,"props":1241,"children":1242},{"style":147},[1243],{"type":45,"value":220},{"type":39,"tag":73,"props":1245,"children":1246},{"style":147},[1247],{"type":45,"value":171},{"type":39,"tag":73,"props":1249,"children":1250},{"style":86},[1251],{"type":45,"value":733},{"type":39,"tag":73,"props":1253,"children":1254},{"style":147},[1255],{"type":45,"value":180},{"type":39,"tag":73,"props":1257,"children":1258},{"style":147},[1259],{"type":45,"value":323},{"type":39,"tag":73,"props":1261,"children":1263},{"class":75,"line":1262},36,[1264,1268,1272],{"type":39,"tag":73,"props":1265,"children":1266},{"style":241},[1267],{"type":45,"value":991},{"type":39,"tag":73,"props":1269,"children":1270},{"style":147},[1271],{"type":45,"value":220},{"type":39,"tag":73,"props":1273,"children":1274},{"style":147},[1275],{"type":45,"value":234},{"type":39,"tag":73,"props":1277,"children":1279},{"class":75,"line":1278},37,[1280,1284,1288,1292,1297,1301],{"type":39,"tag":73,"props":1281,"children":1282},{"style":241},[1283],{"type":45,"value":1008},{"type":39,"tag":73,"props":1285,"children":1286},{"style":147},[1287],{"type":45,"value":220},{"type":39,"tag":73,"props":1289,"children":1290},{"style":147},[1291],{"type":45,"value":171},{"type":39,"tag":73,"props":1293,"children":1294},{"style":86},[1295],{"type":45,"value":1296},"content",{"type":39,"tag":73,"props":1298,"children":1299},{"style":147},[1300],{"type":45,"value":180},{"type":39,"tag":73,"props":1302,"children":1303},{"style":147},[1304],{"type":45,"value":354},{"type":39,"tag":73,"props":1306,"children":1308},{"class":75,"line":1307},38,[1309,1313,1317],{"type":39,"tag":73,"props":1310,"children":1311},{"style":241},[1312],{"type":45,"value":1038},{"type":39,"tag":73,"props":1314,"children":1315},{"style":147},[1316],{"type":45,"value":220},{"type":39,"tag":73,"props":1318,"children":1319},{"style":147},[1320],{"type":45,"value":234},{"type":39,"tag":73,"props":1322,"children":1324},{"class":75,"line":1323},39,[1325,1330,1334,1338,1342,1346,1350,1354,1358,1362,1366,1370,1374,1378,1382,1386,1391,1395,1399,1403,1407,1411],{"type":39,"tag":73,"props":1326,"children":1327},{"style":241},[1328],{"type":45,"value":1329},"          content",{"type":39,"tag":73,"props":1331,"children":1332},{"style":147},[1333],{"type":45,"value":220},{"type":39,"tag":73,"props":1335,"children":1336},{"style":147},[1337],{"type":45,"value":150},{"type":39,"tag":73,"props":1339,"children":1340},{"style":241},[1341],{"type":45,"value":144},{"type":39,"tag":73,"props":1343,"children":1344},{"style":147},[1345],{"type":45,"value":220},{"type":39,"tag":73,"props":1347,"children":1348},{"style":147},[1349],{"type":45,"value":171},{"type":39,"tag":73,"props":1351,"children":1352},{"style":86},[1353],{"type":45,"value":1080},{"type":39,"tag":73,"props":1355,"children":1356},{"style":147},[1357],{"type":45,"value":180},{"type":39,"tag":73,"props":1359,"children":1360},{"style":147},[1361],{"type":45,"value":296},{"type":39,"tag":73,"props":1363,"children":1364},{"style":241},[1365],{"type":45,"value":491},{"type":39,"tag":73,"props":1367,"children":1368},{"style":147},[1369],{"type":45,"value":220},{"type":39,"tag":73,"props":1371,"children":1372},{"style":147},[1373],{"type":45,"value":150},{"type":39,"tag":73,"props":1375,"children":1376},{"style":241},[1377],{"type":45,"value":962},{"type":39,"tag":73,"props":1379,"children":1380},{"style":147},[1381],{"type":45,"value":220},{"type":39,"tag":73,"props":1383,"children":1384},{"style":147},[1385],{"type":45,"value":171},{"type":39,"tag":73,"props":1387,"children":1388},{"style":86},[1389],{"type":45,"value":1390},"About Us",{"type":39,"tag":73,"props":1392,"children":1393},{"style":147},[1394],{"type":45,"value":180},{"type":39,"tag":73,"props":1396,"children":1397},{"style":147},[1398],{"type":45,"value":1126},{"type":39,"tag":73,"props":1400,"children":1401},{"style":241},[1402],{"type":45,"value":505},{"type":39,"tag":73,"props":1404,"children":1405},{"style":147},[1406],{"type":45,"value":220},{"type":39,"tag":73,"props":1408,"children":1409},{"style":153},[1410],{"type":45,"value":768},{"type":39,"tag":73,"props":1412,"children":1413},{"style":147},[1414],{"type":45,"value":554},{"type":39,"tag":73,"props":1416,"children":1418},{"class":75,"line":1417},40,[1419],{"type":39,"tag":73,"props":1420,"children":1421},{"style":147},[1422],{"type":45,"value":1151},{"type":39,"tag":73,"props":1424,"children":1426},{"class":75,"line":1425},41,[1427],{"type":39,"tag":73,"props":1428,"children":1429},{"style":147},[1430],{"type":45,"value":851},{"type":39,"tag":73,"props":1432,"children":1434},{"class":75,"line":1433},42,[1435],{"type":39,"tag":73,"props":1436,"children":1437},{"style":147},[1438],{"type":45,"value":860},{"type":39,"tag":73,"props":1440,"children":1442},{"class":75,"line":1441},43,[1443],{"type":39,"tag":73,"props":1444,"children":1445},{"style":147},[1446],{"type":45,"value":363},{"type":39,"tag":73,"props":1448,"children":1450},{"class":75,"line":1449},44,[1451],{"type":39,"tag":73,"props":1452,"children":1453},{"style":147},[1454],{"type":45,"value":1455},"};\n",{"type":39,"tag":106,"props":1457,"children":1459},{"id":1458},"_2-create-the-app",[1460],{"type":45,"value":1461},"2. Create the App",{"type":39,"tag":61,"props":1463,"children":1465},{"className":114,"code":1464,"language":116,"meta":66,"style":66},"\u002F\u002F lib\u002Fapp.ts\nimport { createNextApp } from \"@json-render\u002Fnext\u002Fserver\";\nimport { spec } from \".\u002Fspec\";\n\nexport const { Page, generateMetadata, generateStaticParams } = createNextApp({\n  spec,\n  loaders: {\n    \u002F\u002F Server-side data loaders (optional)\n    loadPost: async ({ slug }) => {\n      const post = await getPost(slug as string);\n      return { post };\n    },\n  },\n});\n",[1466],{"type":39,"tag":69,"props":1467,"children":1468},{"__ignoreMap":66},[1469,1477,1518,1558,1565,1627,1639,1655,1663,1705,1760,1781,1788,1795],{"type":39,"tag":73,"props":1470,"children":1471},{"class":75,"line":76},[1472],{"type":39,"tag":73,"props":1473,"children":1474},{"style":126},[1475],{"type":45,"value":1476},"\u002F\u002F lib\u002Fapp.ts\n",{"type":39,"tag":73,"props":1478,"children":1479},{"class":75,"line":132},[1480,1484,1488,1493,1497,1501,1505,1510,1514],{"type":39,"tag":73,"props":1481,"children":1482},{"style":136},[1483],{"type":45,"value":139},{"type":39,"tag":73,"props":1485,"children":1486},{"style":147},[1487],{"type":45,"value":150},{"type":39,"tag":73,"props":1489,"children":1490},{"style":153},[1491],{"type":45,"value":1492}," createNextApp",{"type":39,"tag":73,"props":1494,"children":1495},{"style":147},[1496],{"type":45,"value":161},{"type":39,"tag":73,"props":1498,"children":1499},{"style":136},[1500],{"type":45,"value":166},{"type":39,"tag":73,"props":1502,"children":1503},{"style":147},[1504],{"type":45,"value":171},{"type":39,"tag":73,"props":1506,"children":1507},{"style":86},[1508],{"type":45,"value":1509},"@json-render\u002Fnext\u002Fserver",{"type":39,"tag":73,"props":1511,"children":1512},{"style":147},[1513],{"type":45,"value":180},{"type":39,"tag":73,"props":1515,"children":1516},{"style":147},[1517],{"type":45,"value":185},{"type":39,"tag":73,"props":1519,"children":1520},{"class":75,"line":188},[1521,1525,1529,1533,1537,1541,1545,1550,1554],{"type":39,"tag":73,"props":1522,"children":1523},{"style":136},[1524],{"type":45,"value":139},{"type":39,"tag":73,"props":1526,"children":1527},{"style":147},[1528],{"type":45,"value":150},{"type":39,"tag":73,"props":1530,"children":1531},{"style":153},[1532],{"type":45,"value":215},{"type":39,"tag":73,"props":1534,"children":1535},{"style":147},[1536],{"type":45,"value":161},{"type":39,"tag":73,"props":1538,"children":1539},{"style":136},[1540],{"type":45,"value":166},{"type":39,"tag":73,"props":1542,"children":1543},{"style":147},[1544],{"type":45,"value":171},{"type":39,"tag":73,"props":1546,"children":1547},{"style":86},[1548],{"type":45,"value":1549},".\u002Fspec",{"type":39,"tag":73,"props":1551,"children":1552},{"style":147},[1553],{"type":45,"value":180},{"type":39,"tag":73,"props":1555,"children":1556},{"style":147},[1557],{"type":45,"value":185},{"type":39,"tag":73,"props":1559,"children":1560},{"class":75,"line":198},[1561],{"type":39,"tag":73,"props":1562,"children":1563},{"emptyLinePlaceholder":192},[1564],{"type":45,"value":195},{"type":39,"tag":73,"props":1566,"children":1567},{"class":75,"line":237},[1568,1572,1576,1580,1585,1589,1594,1598,1603,1608,1612,1617,1622],{"type":39,"tag":73,"props":1569,"children":1570},{"style":136},[1571],{"type":45,"value":204},{"type":39,"tag":73,"props":1573,"children":1574},{"style":207},[1575],{"type":45,"value":210},{"type":39,"tag":73,"props":1577,"children":1578},{"style":147},[1579],{"type":45,"value":150},{"type":39,"tag":73,"props":1581,"children":1582},{"style":153},[1583],{"type":45,"value":1584}," Page",{"type":39,"tag":73,"props":1586,"children":1587},{"style":147},[1588],{"type":45,"value":296},{"type":39,"tag":73,"props":1590,"children":1591},{"style":153},[1592],{"type":45,"value":1593}," generateMetadata",{"type":39,"tag":73,"props":1595,"children":1596},{"style":147},[1597],{"type":45,"value":296},{"type":39,"tag":73,"props":1599,"children":1600},{"style":153},[1601],{"type":45,"value":1602}," generateStaticParams ",{"type":39,"tag":73,"props":1604,"children":1605},{"style":147},[1606],{"type":45,"value":1607},"}",{"type":39,"tag":73,"props":1609,"children":1610},{"style":147},[1611],{"type":45,"value":229},{"type":39,"tag":73,"props":1613,"children":1615},{"style":1614},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1616],{"type":45,"value":1492},{"type":39,"tag":73,"props":1618,"children":1619},{"style":153},[1620],{"type":45,"value":1621},"(",{"type":39,"tag":73,"props":1623,"children":1624},{"style":147},[1625],{"type":45,"value":1626},"{\n",{"type":39,"tag":73,"props":1628,"children":1629},{"class":75,"line":255},[1630,1635],{"type":39,"tag":73,"props":1631,"children":1632},{"style":153},[1633],{"type":45,"value":1634},"  spec",{"type":39,"tag":73,"props":1636,"children":1637},{"style":147},[1638],{"type":45,"value":354},{"type":39,"tag":73,"props":1640,"children":1641},{"class":75,"line":326},[1642,1647,1651],{"type":39,"tag":73,"props":1643,"children":1644},{"style":241},[1645],{"type":45,"value":1646},"  loaders",{"type":39,"tag":73,"props":1648,"children":1649},{"style":147},[1650],{"type":45,"value":220},{"type":39,"tag":73,"props":1652,"children":1653},{"style":147},[1654],{"type":45,"value":234},{"type":39,"tag":73,"props":1656,"children":1657},{"class":75,"line":357},[1658],{"type":39,"tag":73,"props":1659,"children":1660},{"style":126},[1661],{"type":45,"value":1662},"    \u002F\u002F Server-side data loaders (optional)\n",{"type":39,"tag":73,"props":1664,"children":1665},{"class":75,"line":366},[1666,1671,1675,1680,1685,1691,1696,1701],{"type":39,"tag":73,"props":1667,"children":1668},{"style":1614},[1669],{"type":45,"value":1670},"    loadPost",{"type":39,"tag":73,"props":1672,"children":1673},{"style":147},[1674],{"type":45,"value":220},{"type":39,"tag":73,"props":1676,"children":1677},{"style":207},[1678],{"type":45,"value":1679}," async",{"type":39,"tag":73,"props":1681,"children":1682},{"style":147},[1683],{"type":45,"value":1684}," ({",{"type":39,"tag":73,"props":1686,"children":1688},{"style":1687},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1689],{"type":45,"value":1690}," slug",{"type":39,"tag":73,"props":1692,"children":1693},{"style":147},[1694],{"type":45,"value":1695}," })",{"type":39,"tag":73,"props":1697,"children":1698},{"style":207},[1699],{"type":45,"value":1700}," =>",{"type":39,"tag":73,"props":1702,"children":1703},{"style":147},[1704],{"type":45,"value":234},{"type":39,"tag":73,"props":1706,"children":1707},{"class":75,"line":383},[1708,1713,1718,1722,1727,1732,1736,1741,1746,1751,1756],{"type":39,"tag":73,"props":1709,"children":1710},{"style":207},[1711],{"type":45,"value":1712},"      const",{"type":39,"tag":73,"props":1714,"children":1715},{"style":153},[1716],{"type":45,"value":1717}," post",{"type":39,"tag":73,"props":1719,"children":1720},{"style":147},[1721],{"type":45,"value":229},{"type":39,"tag":73,"props":1723,"children":1724},{"style":136},[1725],{"type":45,"value":1726}," await",{"type":39,"tag":73,"props":1728,"children":1729},{"style":1614},[1730],{"type":45,"value":1731}," getPost",{"type":39,"tag":73,"props":1733,"children":1734},{"style":241},[1735],{"type":45,"value":1621},{"type":39,"tag":73,"props":1737,"children":1738},{"style":153},[1739],{"type":45,"value":1740},"slug",{"type":39,"tag":73,"props":1742,"children":1743},{"style":136},[1744],{"type":45,"value":1745}," as",{"type":39,"tag":73,"props":1747,"children":1748},{"style":80},[1749],{"type":45,"value":1750}," string",{"type":39,"tag":73,"props":1752,"children":1753},{"style":241},[1754],{"type":45,"value":1755},")",{"type":39,"tag":73,"props":1757,"children":1758},{"style":147},[1759],{"type":45,"value":185},{"type":39,"tag":73,"props":1761,"children":1762},{"class":75,"line":400},[1763,1768,1772,1776],{"type":39,"tag":73,"props":1764,"children":1765},{"style":136},[1766],{"type":45,"value":1767},"      return",{"type":39,"tag":73,"props":1769,"children":1770},{"style":147},[1771],{"type":45,"value":150},{"type":39,"tag":73,"props":1773,"children":1774},{"style":153},[1775],{"type":45,"value":1717},{"type":39,"tag":73,"props":1777,"children":1778},{"style":147},[1779],{"type":45,"value":1780}," };\n",{"type":39,"tag":73,"props":1782,"children":1783},{"class":75,"line":430},[1784],{"type":39,"tag":73,"props":1785,"children":1786},{"style":147},[1787],{"type":45,"value":860},{"type":39,"tag":73,"props":1789,"children":1790},{"class":75,"line":447},[1791],{"type":39,"tag":73,"props":1792,"children":1793},{"style":147},[1794],{"type":45,"value":363},{"type":39,"tag":73,"props":1796,"children":1797},{"class":75,"line":557},[1798,1802,1806],{"type":39,"tag":73,"props":1799,"children":1800},{"style":147},[1801],{"type":45,"value":1607},{"type":39,"tag":73,"props":1803,"children":1804},{"style":153},[1805],{"type":45,"value":1755},{"type":39,"tag":73,"props":1807,"children":1808},{"style":147},[1809],{"type":45,"value":185},{"type":39,"tag":106,"props":1811,"children":1813},{"id":1812},"_3-wire-up-route-files",[1814],{"type":45,"value":1815},"3. Wire Up Route Files",{"type":39,"tag":61,"props":1817,"children":1821},{"className":1818,"code":1819,"language":1820,"meta":66,"style":66},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F app\u002F[[...slug]]\u002Fpage.tsx\nexport { Page as default, generateMetadata, generateStaticParams } from \"@\u002Flib\u002Fapp\";\n","tsx",[1822],{"type":39,"tag":69,"props":1823,"children":1824},{"__ignoreMap":66},[1825,1833],{"type":39,"tag":73,"props":1826,"children":1827},{"class":75,"line":76},[1828],{"type":39,"tag":73,"props":1829,"children":1830},{"style":126},[1831],{"type":45,"value":1832},"\u002F\u002F app\u002F[[...slug]]\u002Fpage.tsx\n",{"type":39,"tag":73,"props":1834,"children":1835},{"class":75,"line":132},[1836,1840,1844,1848,1852,1856,1860,1864,1868,1873,1877,1881,1885,1890,1894],{"type":39,"tag":73,"props":1837,"children":1838},{"style":136},[1839],{"type":45,"value":204},{"type":39,"tag":73,"props":1841,"children":1842},{"style":147},[1843],{"type":45,"value":150},{"type":39,"tag":73,"props":1845,"children":1846},{"style":153},[1847],{"type":45,"value":1584},{"type":39,"tag":73,"props":1849,"children":1850},{"style":136},[1851],{"type":45,"value":1745},{"type":39,"tag":73,"props":1853,"children":1854},{"style":136},[1855],{"type":45,"value":274},{"type":39,"tag":73,"props":1857,"children":1858},{"style":147},[1859],{"type":45,"value":296},{"type":39,"tag":73,"props":1861,"children":1862},{"style":153},[1863],{"type":45,"value":1593},{"type":39,"tag":73,"props":1865,"children":1866},{"style":147},[1867],{"type":45,"value":296},{"type":39,"tag":73,"props":1869,"children":1870},{"style":153},[1871],{"type":45,"value":1872}," generateStaticParams",{"type":39,"tag":73,"props":1874,"children":1875},{"style":147},[1876],{"type":45,"value":161},{"type":39,"tag":73,"props":1878,"children":1879},{"style":136},[1880],{"type":45,"value":166},{"type":39,"tag":73,"props":1882,"children":1883},{"style":147},[1884],{"type":45,"value":171},{"type":39,"tag":73,"props":1886,"children":1887},{"style":86},[1888],{"type":45,"value":1889},"@\u002Flib\u002Fapp",{"type":39,"tag":73,"props":1891,"children":1892},{"style":147},[1893],{"type":45,"value":180},{"type":39,"tag":73,"props":1895,"children":1896},{"style":147},[1897],{"type":45,"value":185},{"type":39,"tag":61,"props":1899,"children":1901},{"className":1818,"code":1900,"language":1820,"meta":66,"style":66},"\u002F\u002F app\u002F[[...slug]]\u002Flayout.tsx\nimport { NextAppProvider } from \"@json-render\u002Fnext\";\nimport { registry, handlers } from \"@\u002Flib\u002Fregistry\";\n\nexport default function Layout({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\">\n      \u003Cbody>\n        \u003CNextAppProvider registry={registry} handlers={handlers}>\n          {children}\n        \u003C\u002FNextAppProvider>\n      \u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  );\n}\n",[1902],{"type":39,"tag":69,"props":1903,"children":1904},{"__ignoreMap":66},[1905,1913,1953,2003,2010,2080,2093,2134,2151,2201,2218,2234,2250,2266,2278],{"type":39,"tag":73,"props":1906,"children":1907},{"class":75,"line":76},[1908],{"type":39,"tag":73,"props":1909,"children":1910},{"style":126},[1911],{"type":45,"value":1912},"\u002F\u002F app\u002F[[...slug]]\u002Flayout.tsx\n",{"type":39,"tag":73,"props":1914,"children":1915},{"class":75,"line":132},[1916,1920,1924,1929,1933,1937,1941,1945,1949],{"type":39,"tag":73,"props":1917,"children":1918},{"style":136},[1919],{"type":45,"value":139},{"type":39,"tag":73,"props":1921,"children":1922},{"style":147},[1923],{"type":45,"value":150},{"type":39,"tag":73,"props":1925,"children":1926},{"style":153},[1927],{"type":45,"value":1928}," NextAppProvider",{"type":39,"tag":73,"props":1930,"children":1931},{"style":147},[1932],{"type":45,"value":161},{"type":39,"tag":73,"props":1934,"children":1935},{"style":136},[1936],{"type":45,"value":166},{"type":39,"tag":73,"props":1938,"children":1939},{"style":147},[1940],{"type":45,"value":171},{"type":39,"tag":73,"props":1942,"children":1943},{"style":86},[1944],{"type":45,"value":46},{"type":39,"tag":73,"props":1946,"children":1947},{"style":147},[1948],{"type":45,"value":180},{"type":39,"tag":73,"props":1950,"children":1951},{"style":147},[1952],{"type":45,"value":185},{"type":39,"tag":73,"props":1954,"children":1955},{"class":75,"line":188},[1956,1960,1964,1969,1973,1978,1982,1986,1990,1995,1999],{"type":39,"tag":73,"props":1957,"children":1958},{"style":136},[1959],{"type":45,"value":139},{"type":39,"tag":73,"props":1961,"children":1962},{"style":147},[1963],{"type":45,"value":150},{"type":39,"tag":73,"props":1965,"children":1966},{"style":153},[1967],{"type":45,"value":1968}," registry",{"type":39,"tag":73,"props":1970,"children":1971},{"style":147},[1972],{"type":45,"value":296},{"type":39,"tag":73,"props":1974,"children":1975},{"style":153},[1976],{"type":45,"value":1977}," handlers",{"type":39,"tag":73,"props":1979,"children":1980},{"style":147},[1981],{"type":45,"value":161},{"type":39,"tag":73,"props":1983,"children":1984},{"style":136},[1985],{"type":45,"value":166},{"type":39,"tag":73,"props":1987,"children":1988},{"style":147},[1989],{"type":45,"value":171},{"type":39,"tag":73,"props":1991,"children":1992},{"style":86},[1993],{"type":45,"value":1994},"@\u002Flib\u002Fregistry",{"type":39,"tag":73,"props":1996,"children":1997},{"style":147},[1998],{"type":45,"value":180},{"type":39,"tag":73,"props":2000,"children":2001},{"style":147},[2002],{"type":45,"value":185},{"type":39,"tag":73,"props":2004,"children":2005},{"class":75,"line":198},[2006],{"type":39,"tag":73,"props":2007,"children":2008},{"emptyLinePlaceholder":192},[2009],{"type":45,"value":195},{"type":39,"tag":73,"props":2011,"children":2012},{"class":75,"line":237},[2013,2017,2021,2026,2031,2036,2040,2045,2049,2053,2057,2062,2067,2072,2076],{"type":39,"tag":73,"props":2014,"children":2015},{"style":136},[2016],{"type":45,"value":204},{"type":39,"tag":73,"props":2018,"children":2019},{"style":136},[2020],{"type":45,"value":274},{"type":39,"tag":73,"props":2022,"children":2023},{"style":207},[2024],{"type":45,"value":2025}," function",{"type":39,"tag":73,"props":2027,"children":2028},{"style":1614},[2029],{"type":45,"value":2030}," Layout",{"type":39,"tag":73,"props":2032,"children":2033},{"style":147},[2034],{"type":45,"value":2035},"({",{"type":39,"tag":73,"props":2037,"children":2038},{"style":1687},[2039],{"type":45,"value":505},{"type":39,"tag":73,"props":2041,"children":2042},{"style":147},[2043],{"type":45,"value":2044}," }:",{"type":39,"tag":73,"props":2046,"children":2047},{"style":147},[2048],{"type":45,"value":150},{"type":39,"tag":73,"props":2050,"children":2051},{"style":241},[2052],{"type":45,"value":505},{"type":39,"tag":73,"props":2054,"children":2055},{"style":147},[2056],{"type":45,"value":220},{"type":39,"tag":73,"props":2058,"children":2059},{"style":80},[2060],{"type":45,"value":2061}," React",{"type":39,"tag":73,"props":2063,"children":2064},{"style":147},[2065],{"type":45,"value":2066},".",{"type":39,"tag":73,"props":2068,"children":2069},{"style":80},[2070],{"type":45,"value":2071},"ReactNode",{"type":39,"tag":73,"props":2073,"children":2074},{"style":147},[2075],{"type":45,"value":1695},{"type":39,"tag":73,"props":2077,"children":2078},{"style":147},[2079],{"type":45,"value":234},{"type":39,"tag":73,"props":2081,"children":2082},{"class":75,"line":255},[2083,2088],{"type":39,"tag":73,"props":2084,"children":2085},{"style":136},[2086],{"type":45,"value":2087},"  return",{"type":39,"tag":73,"props":2089,"children":2090},{"style":241},[2091],{"type":45,"value":2092}," (\n",{"type":39,"tag":73,"props":2094,"children":2095},{"class":75,"line":326},[2096,2101,2106,2111,2116,2120,2125,2129],{"type":39,"tag":73,"props":2097,"children":2098},{"style":147},[2099],{"type":45,"value":2100},"    \u003C",{"type":39,"tag":73,"props":2102,"children":2103},{"style":241},[2104],{"type":45,"value":2105},"html",{"type":39,"tag":73,"props":2107,"children":2108},{"style":207},[2109],{"type":45,"value":2110}," lang",{"type":39,"tag":73,"props":2112,"children":2113},{"style":147},[2114],{"type":45,"value":2115},"=",{"type":39,"tag":73,"props":2117,"children":2118},{"style":147},[2119],{"type":45,"value":180},{"type":39,"tag":73,"props":2121,"children":2122},{"style":86},[2123],{"type":45,"value":2124},"en",{"type":39,"tag":73,"props":2126,"children":2127},{"style":147},[2128],{"type":45,"value":180},{"type":39,"tag":73,"props":2130,"children":2131},{"style":147},[2132],{"type":45,"value":2133},">\n",{"type":39,"tag":73,"props":2135,"children":2136},{"class":75,"line":357},[2137,2142,2147],{"type":39,"tag":73,"props":2138,"children":2139},{"style":147},[2140],{"type":45,"value":2141},"      \u003C",{"type":39,"tag":73,"props":2143,"children":2144},{"style":241},[2145],{"type":45,"value":2146},"body",{"type":39,"tag":73,"props":2148,"children":2149},{"style":147},[2150],{"type":45,"value":2133},{"type":39,"tag":73,"props":2152,"children":2153},{"class":75,"line":366},[2154,2159,2164,2168,2173,2178,2183,2188,2192,2196],{"type":39,"tag":73,"props":2155,"children":2156},{"style":147},[2157],{"type":45,"value":2158},"        \u003C",{"type":39,"tag":73,"props":2160,"children":2161},{"style":80},[2162],{"type":45,"value":2163},"NextAppProvider",{"type":39,"tag":73,"props":2165,"children":2166},{"style":207},[2167],{"type":45,"value":1968},{"type":39,"tag":73,"props":2169,"children":2170},{"style":147},[2171],{"type":45,"value":2172},"={",{"type":39,"tag":73,"props":2174,"children":2175},{"style":153},[2176],{"type":45,"value":2177},"registry",{"type":39,"tag":73,"props":2179,"children":2180},{"style":147},[2181],{"type":45,"value":2182},"} ",{"type":39,"tag":73,"props":2184,"children":2185},{"style":207},[2186],{"type":45,"value":2187},"handlers",{"type":39,"tag":73,"props":2189,"children":2190},{"style":147},[2191],{"type":45,"value":2172},{"type":39,"tag":73,"props":2193,"children":2194},{"style":153},[2195],{"type":45,"value":2187},{"type":39,"tag":73,"props":2197,"children":2198},{"style":147},[2199],{"type":45,"value":2200},"}>\n",{"type":39,"tag":73,"props":2202,"children":2203},{"class":75,"line":383},[2204,2208,2213],{"type":39,"tag":73,"props":2205,"children":2206},{"style":147},[2207],{"type":45,"value":631},{"type":39,"tag":73,"props":2209,"children":2210},{"style":153},[2211],{"type":45,"value":2212},"children",{"type":39,"tag":73,"props":2214,"children":2215},{"style":147},[2216],{"type":45,"value":2217},"}\n",{"type":39,"tag":73,"props":2219,"children":2220},{"class":75,"line":400},[2221,2226,2230],{"type":39,"tag":73,"props":2222,"children":2223},{"style":147},[2224],{"type":45,"value":2225},"        \u003C\u002F",{"type":39,"tag":73,"props":2227,"children":2228},{"style":80},[2229],{"type":45,"value":2163},{"type":39,"tag":73,"props":2231,"children":2232},{"style":147},[2233],{"type":45,"value":2133},{"type":39,"tag":73,"props":2235,"children":2236},{"class":75,"line":430},[2237,2242,2246],{"type":39,"tag":73,"props":2238,"children":2239},{"style":147},[2240],{"type":45,"value":2241},"      \u003C\u002F",{"type":39,"tag":73,"props":2243,"children":2244},{"style":241},[2245],{"type":45,"value":2146},{"type":39,"tag":73,"props":2247,"children":2248},{"style":147},[2249],{"type":45,"value":2133},{"type":39,"tag":73,"props":2251,"children":2252},{"class":75,"line":447},[2253,2258,2262],{"type":39,"tag":73,"props":2254,"children":2255},{"style":147},[2256],{"type":45,"value":2257},"    \u003C\u002F",{"type":39,"tag":73,"props":2259,"children":2260},{"style":241},[2261],{"type":45,"value":2105},{"type":39,"tag":73,"props":2263,"children":2264},{"style":147},[2265],{"type":45,"value":2133},{"type":39,"tag":73,"props":2267,"children":2268},{"class":75,"line":557},[2269,2274],{"type":39,"tag":73,"props":2270,"children":2271},{"style":241},[2272],{"type":45,"value":2273},"  )",{"type":39,"tag":73,"props":2275,"children":2276},{"style":147},[2277],{"type":45,"value":185},{"type":39,"tag":73,"props":2279,"children":2280},{"class":75,"line":625},[2281],{"type":39,"tag":73,"props":2282,"children":2283},{"style":147},[2284],{"type":45,"value":2217},{"type":39,"tag":54,"props":2286,"children":2288},{"id":2287},"key-concepts",[2289],{"type":45,"value":2290},"Key Concepts",{"type":39,"tag":106,"props":2292,"children":2294},{"id":2293},"nextappspec",[2295],{"type":45,"value":2296},"NextAppSpec",{"type":39,"tag":48,"props":2298,"children":2299},{},[2300],{"type":45,"value":2301},"The top-level spec defines an entire Next.js application:",{"type":39,"tag":2303,"props":2304,"children":2305},"ul",{},[2306,2318,2335,2345],{"type":39,"tag":2307,"props":2308,"children":2309},"li",{},[2310,2316],{"type":39,"tag":2311,"props":2312,"children":2313},"strong",{},[2314],{"type":45,"value":2315},"metadata",{"type":45,"value":2317},": Root-level SEO metadata (title template, description, OpenGraph)",{"type":39,"tag":2307,"props":2319,"children":2320},{},[2321,2326,2328,2333],{"type":39,"tag":2311,"props":2322,"children":2323},{},[2324],{"type":45,"value":2325},"layouts",{"type":45,"value":2327},": Reusable layout element trees (each must include a ",{"type":39,"tag":69,"props":2329,"children":2331},{"className":2330},[],[2332],{"type":45,"value":806},{"type":45,"value":2334}," component)",{"type":39,"tag":2307,"props":2336,"children":2337},{},[2338,2343],{"type":39,"tag":2311,"props":2339,"children":2340},{},[2341],{"type":45,"value":2342},"routes",{"type":45,"value":2344},": Route definitions keyed by URL pattern",{"type":39,"tag":2307,"props":2346,"children":2347},{},[2348,2353],{"type":39,"tag":2311,"props":2349,"children":2350},{},[2351],{"type":45,"value":2352},"state",{"type":45,"value":2354},": Global initial state shared across all routes",{"type":39,"tag":106,"props":2356,"children":2358},{"id":2357},"route-patterns",[2359],{"type":45,"value":2360},"Route Patterns",{"type":39,"tag":48,"props":2362,"children":2363},{},[2364],{"type":45,"value":2365},"Routes use Next.js URL conventions:",{"type":39,"tag":2303,"props":2367,"children":2368},{},[2369,2380,2391,2402,2413],{"type":39,"tag":2307,"props":2370,"children":2371},{},[2372,2378],{"type":39,"tag":69,"props":2373,"children":2375},{"className":2374},[],[2376],{"type":45,"value":2377},"\"\u002F\"",{"type":45,"value":2379}," -- home page",{"type":39,"tag":2307,"props":2381,"children":2382},{},[2383,2389],{"type":39,"tag":69,"props":2384,"children":2386},{"className":2385},[],[2387],{"type":45,"value":2388},"\"\u002Fabout\"",{"type":45,"value":2390}," -- static route",{"type":39,"tag":2307,"props":2392,"children":2393},{},[2394,2400],{"type":39,"tag":69,"props":2395,"children":2397},{"className":2396},[],[2398],{"type":45,"value":2399},"\"\u002Fblog\u002F[slug]\"",{"type":45,"value":2401}," -- dynamic segment",{"type":39,"tag":2307,"props":2403,"children":2404},{},[2405,2411],{"type":39,"tag":69,"props":2406,"children":2408},{"className":2407},[],[2409],{"type":45,"value":2410},"\"\u002Fdocs\u002F[...path]\"",{"type":45,"value":2412}," -- catch-all segment",{"type":39,"tag":2307,"props":2414,"children":2415},{},[2416,2422],{"type":39,"tag":69,"props":2417,"children":2419},{"className":2418},[],[2420],{"type":45,"value":2421},"\"\u002Fsettings\u002F[[...path]]\"",{"type":45,"value":2423}," -- optional catch-all segment",{"type":39,"tag":106,"props":2425,"children":2426},{"id":2325},[2427],{"type":45,"value":2428},"Layouts",{"type":39,"tag":48,"props":2430,"children":2431},{},[2432,2434,2439,2441,2447,2449,2455],{"type":45,"value":2433},"Layouts wrap page content. Every layout MUST include a ",{"type":39,"tag":69,"props":2435,"children":2437},{"className":2436},[],[2438],{"type":45,"value":806},{"type":45,"value":2440}," component where page content will be rendered. Layouts are defined once in ",{"type":39,"tag":69,"props":2442,"children":2444},{"className":2443},[],[2445],{"type":45,"value":2446},"spec.layouts",{"type":45,"value":2448}," and referenced by routes via the ",{"type":39,"tag":69,"props":2450,"children":2452},{"className":2451},[],[2453],{"type":45,"value":2454},"layout",{"type":45,"value":2456}," field.",{"type":39,"tag":106,"props":2458,"children":2460},{"id":2459},"built-in-components",[2461],{"type":45,"value":2462},"Built-in Components",{"type":39,"tag":2303,"props":2464,"children":2465},{},[2466,2475],{"type":39,"tag":2307,"props":2467,"children":2468},{},[2469,2473],{"type":39,"tag":2311,"props":2470,"children":2471},{},[2472],{"type":45,"value":806},{"type":45,"value":2474},": Placeholder in layouts where page content is rendered",{"type":39,"tag":2307,"props":2476,"children":2477},{},[2478,2483,2485,2491],{"type":39,"tag":2311,"props":2479,"children":2480},{},[2481],{"type":45,"value":2482},"Link",{"type":45,"value":2484},": Client-side navigation link (wraps ",{"type":39,"tag":69,"props":2486,"children":2488},{"className":2487},[],[2489],{"type":45,"value":2490},"next\u002Flink",{"type":45,"value":1755},{"type":39,"tag":106,"props":2493,"children":2495},{"id":2494},"built-in-actions",[2496],{"type":45,"value":2497},"Built-in Actions",{"type":39,"tag":2303,"props":2499,"children":2500},{},[2501,2517,2533,2549],{"type":39,"tag":2307,"props":2502,"children":2503},{},[2504,2509,2511],{"type":39,"tag":2311,"props":2505,"children":2506},{},[2507],{"type":45,"value":2508},"setState",{"type":45,"value":2510},": Update state value. Params: ",{"type":39,"tag":69,"props":2512,"children":2514},{"className":2513},[],[2515],{"type":45,"value":2516},"{ statePath, value }",{"type":39,"tag":2307,"props":2518,"children":2519},{},[2520,2525,2527],{"type":39,"tag":2311,"props":2521,"children":2522},{},[2523],{"type":45,"value":2524},"pushState",{"type":45,"value":2526},": Append to array. Params: ",{"type":39,"tag":69,"props":2528,"children":2530},{"className":2529},[],[2531],{"type":45,"value":2532},"{ statePath, value, clearStatePath? }",{"type":39,"tag":2307,"props":2534,"children":2535},{},[2536,2541,2543],{"type":39,"tag":2311,"props":2537,"children":2538},{},[2539],{"type":45,"value":2540},"removeState",{"type":45,"value":2542},": Remove from array by index. Params: ",{"type":39,"tag":69,"props":2544,"children":2546},{"className":2545},[],[2547],{"type":45,"value":2548},"{ statePath, index }",{"type":39,"tag":2307,"props":2550,"children":2551},{},[2552,2557,2559],{"type":39,"tag":2311,"props":2553,"children":2554},{},[2555],{"type":45,"value":2556},"navigate",{"type":45,"value":2558},": Client-side navigation. Params: ",{"type":39,"tag":69,"props":2560,"children":2562},{"className":2561},[],[2563],{"type":45,"value":2564},"{ href }",{"type":39,"tag":106,"props":2566,"children":2568},{"id":2567},"data-loaders",[2569],{"type":45,"value":2570},"Data Loaders",{"type":39,"tag":48,"props":2572,"children":2573},{},[2574],{"type":45,"value":2575},"Server-side async functions that run in the Server Component before rendering. Results are merged into the page's initial state.",{"type":39,"tag":61,"props":2577,"children":2579},{"className":114,"code":2578,"language":116,"meta":66,"style":66},"createNextApp({\n  spec,\n  loaders: {\n    loadPost: async ({ slug }) => {\n      const post = await db.post.findUnique({ where: { slug } });\n      return { post };\n    },\n  },\n});\n",[2580],{"type":39,"tag":69,"props":2581,"children":2582},{"__ignoreMap":66},[2583,2599,2610,2625,2660,2744,2763,2770,2777],{"type":39,"tag":73,"props":2584,"children":2585},{"class":75,"line":76},[2586,2591,2595],{"type":39,"tag":73,"props":2587,"children":2588},{"style":1614},[2589],{"type":45,"value":2590},"createNextApp",{"type":39,"tag":73,"props":2592,"children":2593},{"style":153},[2594],{"type":45,"value":1621},{"type":39,"tag":73,"props":2596,"children":2597},{"style":147},[2598],{"type":45,"value":1626},{"type":39,"tag":73,"props":2600,"children":2601},{"class":75,"line":132},[2602,2606],{"type":39,"tag":73,"props":2603,"children":2604},{"style":153},[2605],{"type":45,"value":1634},{"type":39,"tag":73,"props":2607,"children":2608},{"style":147},[2609],{"type":45,"value":354},{"type":39,"tag":73,"props":2611,"children":2612},{"class":75,"line":188},[2613,2617,2621],{"type":39,"tag":73,"props":2614,"children":2615},{"style":241},[2616],{"type":45,"value":1646},{"type":39,"tag":73,"props":2618,"children":2619},{"style":147},[2620],{"type":45,"value":220},{"type":39,"tag":73,"props":2622,"children":2623},{"style":147},[2624],{"type":45,"value":234},{"type":39,"tag":73,"props":2626,"children":2627},{"class":75,"line":198},[2628,2632,2636,2640,2644,2648,2652,2656],{"type":39,"tag":73,"props":2629,"children":2630},{"style":1614},[2631],{"type":45,"value":1670},{"type":39,"tag":73,"props":2633,"children":2634},{"style":147},[2635],{"type":45,"value":220},{"type":39,"tag":73,"props":2637,"children":2638},{"style":207},[2639],{"type":45,"value":1679},{"type":39,"tag":73,"props":2641,"children":2642},{"style":147},[2643],{"type":45,"value":1684},{"type":39,"tag":73,"props":2645,"children":2646},{"style":1687},[2647],{"type":45,"value":1690},{"type":39,"tag":73,"props":2649,"children":2650},{"style":147},[2651],{"type":45,"value":1695},{"type":39,"tag":73,"props":2653,"children":2654},{"style":207},[2655],{"type":45,"value":1700},{"type":39,"tag":73,"props":2657,"children":2658},{"style":147},[2659],{"type":45,"value":234},{"type":39,"tag":73,"props":2661,"children":2662},{"class":75,"line":237},[2663,2667,2671,2675,2679,2684,2688,2693,2697,2702,2706,2711,2716,2720,2724,2728,2732,2736,2740],{"type":39,"tag":73,"props":2664,"children":2665},{"style":207},[2666],{"type":45,"value":1712},{"type":39,"tag":73,"props":2668,"children":2669},{"style":153},[2670],{"type":45,"value":1717},{"type":39,"tag":73,"props":2672,"children":2673},{"style":147},[2674],{"type":45,"value":229},{"type":39,"tag":73,"props":2676,"children":2677},{"style":136},[2678],{"type":45,"value":1726},{"type":39,"tag":73,"props":2680,"children":2681},{"style":153},[2682],{"type":45,"value":2683}," db",{"type":39,"tag":73,"props":2685,"children":2686},{"style":147},[2687],{"type":45,"value":2066},{"type":39,"tag":73,"props":2689,"children":2690},{"style":153},[2691],{"type":45,"value":2692},"post",{"type":39,"tag":73,"props":2694,"children":2695},{"style":147},[2696],{"type":45,"value":2066},{"type":39,"tag":73,"props":2698,"children":2699},{"style":1614},[2700],{"type":45,"value":2701},"findUnique",{"type":39,"tag":73,"props":2703,"children":2704},{"style":241},[2705],{"type":45,"value":1621},{"type":39,"tag":73,"props":2707,"children":2708},{"style":147},[2709],{"type":45,"value":2710},"{",{"type":39,"tag":73,"props":2712,"children":2713},{"style":241},[2714],{"type":45,"value":2715}," where",{"type":39,"tag":73,"props":2717,"children":2718},{"style":147},[2719],{"type":45,"value":220},{"type":39,"tag":73,"props":2721,"children":2722},{"style":147},[2723],{"type":45,"value":150},{"type":39,"tag":73,"props":2725,"children":2726},{"style":153},[2727],{"type":45,"value":1690},{"type":39,"tag":73,"props":2729,"children":2730},{"style":147},[2731],{"type":45,"value":161},{"type":39,"tag":73,"props":2733,"children":2734},{"style":147},[2735],{"type":45,"value":161},{"type":39,"tag":73,"props":2737,"children":2738},{"style":241},[2739],{"type":45,"value":1755},{"type":39,"tag":73,"props":2741,"children":2742},{"style":147},[2743],{"type":45,"value":185},{"type":39,"tag":73,"props":2745,"children":2746},{"class":75,"line":255},[2747,2751,2755,2759],{"type":39,"tag":73,"props":2748,"children":2749},{"style":136},[2750],{"type":45,"value":1767},{"type":39,"tag":73,"props":2752,"children":2753},{"style":147},[2754],{"type":45,"value":150},{"type":39,"tag":73,"props":2756,"children":2757},{"style":153},[2758],{"type":45,"value":1717},{"type":39,"tag":73,"props":2760,"children":2761},{"style":147},[2762],{"type":45,"value":1780},{"type":39,"tag":73,"props":2764,"children":2765},{"class":75,"line":326},[2766],{"type":39,"tag":73,"props":2767,"children":2768},{"style":147},[2769],{"type":45,"value":860},{"type":39,"tag":73,"props":2771,"children":2772},{"class":75,"line":357},[2773],{"type":39,"tag":73,"props":2774,"children":2775},{"style":147},[2776],{"type":45,"value":363},{"type":39,"tag":73,"props":2778,"children":2779},{"class":75,"line":366},[2780,2784,2788],{"type":39,"tag":73,"props":2781,"children":2782},{"style":147},[2783],{"type":45,"value":1607},{"type":39,"tag":73,"props":2785,"children":2786},{"style":153},[2787],{"type":45,"value":1755},{"type":39,"tag":73,"props":2789,"children":2790},{"style":147},[2791],{"type":45,"value":185},{"type":39,"tag":106,"props":2793,"children":2795},{"id":2794},"ssr",[2796],{"type":45,"value":2797},"SSR",{"type":39,"tag":48,"props":2799,"children":2800},{},[2801,2803,2808,2810,2816],{"type":45,"value":2802},"Pages are server-rendered automatically. The ",{"type":39,"tag":69,"props":2804,"children":2806},{"className":2805},[],[2807],{"type":45,"value":2590},{"type":45,"value":2809}," ",{"type":39,"tag":69,"props":2811,"children":2813},{"className":2812},[],[2814],{"type":45,"value":2815},"Page",{"type":45,"value":2817}," component is an async Server Component that:",{"type":39,"tag":2819,"props":2820,"children":2821},"ol",{},[2822,2827,2832,2837],{"type":39,"tag":2307,"props":2823,"children":2824},{},[2825],{"type":45,"value":2826},"Matches the route from the spec",{"type":39,"tag":2307,"props":2828,"children":2829},{},[2830],{"type":45,"value":2831},"Runs server-side data loaders",{"type":39,"tag":2307,"props":2833,"children":2834},{},[2835],{"type":45,"value":2836},"Generates metadata",{"type":39,"tag":2307,"props":2838,"children":2839},{},[2840],{"type":45,"value":2841},"Passes the resolved spec to the client renderer for hydration",{"type":39,"tag":106,"props":2843,"children":2845},{"id":2844},"entry-points",[2846],{"type":45,"value":2847},"Entry Points",{"type":39,"tag":2303,"props":2849,"children":2850},{},[2851,2861],{"type":39,"tag":2307,"props":2852,"children":2853},{},[2854,2859],{"type":39,"tag":69,"props":2855,"children":2857},{"className":2856},[],[2858],{"type":45,"value":46},{"type":45,"value":2860}," -- Client components (NextAppProvider, PageRenderer, Link)",{"type":39,"tag":2307,"props":2862,"children":2863},{},[2864,2869],{"type":39,"tag":69,"props":2865,"children":2867},{"className":2866},[],[2868],{"type":45,"value":1509},{"type":45,"value":2870}," -- Server utilities (createNextApp, matchRoute, schema)",{"type":39,"tag":54,"props":2872,"children":2874},{"id":2873},"api-reference",[2875],{"type":45,"value":2876},"API Reference",{"type":39,"tag":106,"props":2878,"children":2880},{"id":2879},"server-exports-json-rendernextserver",[2881,2883,2888],{"type":45,"value":2882},"Server Exports (",{"type":39,"tag":69,"props":2884,"children":2886},{"className":2885},[],[2887],{"type":45,"value":1509},{"type":45,"value":1755},{"type":39,"tag":2303,"props":2890,"children":2891},{},[2892,2903,2914,2925,2936,2947],{"type":39,"tag":2307,"props":2893,"children":2894},{},[2895,2901],{"type":39,"tag":69,"props":2896,"children":2898},{"className":2897},[],[2899],{"type":45,"value":2900},"createNextApp(options)",{"type":45,"value":2902}," -- Create Page, generateMetadata, generateStaticParams",{"type":39,"tag":2307,"props":2904,"children":2905},{},[2906,2912],{"type":39,"tag":69,"props":2907,"children":2909},{"className":2908},[],[2910],{"type":45,"value":2911},"schema",{"type":45,"value":2913}," -- Custom schema for Next.js apps (for AI catalog generation)",{"type":39,"tag":2307,"props":2915,"children":2916},{},[2917,2923],{"type":39,"tag":69,"props":2918,"children":2920},{"className":2919},[],[2921],{"type":45,"value":2922},"matchRoute(spec, pathname)",{"type":45,"value":2924}," -- Match a URL to a route spec",{"type":39,"tag":2307,"props":2926,"children":2927},{},[2928,2934],{"type":39,"tag":69,"props":2929,"children":2931},{"className":2930},[],[2932],{"type":45,"value":2933},"resolveMetadata(spec, route)",{"type":45,"value":2935}," -- Resolve metadata for a route",{"type":39,"tag":2307,"props":2937,"children":2938},{},[2939,2945],{"type":39,"tag":69,"props":2940,"children":2942},{"className":2941},[],[2943],{"type":45,"value":2944},"slugToPath(slug)",{"type":45,"value":2946}," -- Convert catch-all slug array to pathname",{"type":39,"tag":2307,"props":2948,"children":2949},{},[2950,2956],{"type":39,"tag":69,"props":2951,"children":2953},{"className":2952},[],[2954],{"type":45,"value":2955},"collectStaticParams(spec)",{"type":45,"value":2957}," -- Collect static params for all routes",{"type":39,"tag":106,"props":2959,"children":2961},{"id":2960},"client-exports-json-rendernext",[2962,2964,2969],{"type":45,"value":2963},"Client Exports (",{"type":39,"tag":69,"props":2965,"children":2967},{"className":2966},[],[2968],{"type":45,"value":46},{"type":45,"value":1755},{"type":39,"tag":2303,"props":2971,"children":2972},{},[2973,2983,2994,3005,3016,3027],{"type":39,"tag":2307,"props":2974,"children":2975},{},[2976,2981],{"type":39,"tag":69,"props":2977,"children":2979},{"className":2978},[],[2980],{"type":45,"value":2163},{"type":45,"value":2982}," -- Context provider for registry and handlers",{"type":39,"tag":2307,"props":2984,"children":2985},{},[2986,2992],{"type":39,"tag":69,"props":2987,"children":2989},{"className":2988},[],[2990],{"type":45,"value":2991},"PageRenderer",{"type":45,"value":2993}," -- Renders a page spec with optional layout",{"type":39,"tag":2307,"props":2995,"children":2996},{},[2997,3003],{"type":39,"tag":69,"props":2998,"children":3000},{"className":2999},[],[3001],{"type":45,"value":3002},"NextErrorBoundary",{"type":45,"value":3004}," -- Error boundary component",{"type":39,"tag":2307,"props":3006,"children":3007},{},[3008,3014],{"type":39,"tag":69,"props":3009,"children":3011},{"className":3010},[],[3012],{"type":45,"value":3013},"NextLoading",{"type":45,"value":3015}," -- Loading state component",{"type":39,"tag":2307,"props":3017,"children":3018},{},[3019,3025],{"type":39,"tag":69,"props":3020,"children":3022},{"className":3021},[],[3023],{"type":45,"value":3024},"NextNotFound",{"type":45,"value":3026}," -- Not-found component",{"type":39,"tag":2307,"props":3028,"children":3029},{},[3030,3035],{"type":39,"tag":69,"props":3031,"children":3033},{"className":3032},[],[3034],{"type":45,"value":2482},{"type":45,"value":3036}," -- Built-in navigation component (wraps next\u002Flink)",{"type":39,"tag":3038,"props":3039,"children":3040},"style",{},[3041],{"type":45,"value":3042},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3044,"total":943},[3045,3059,3073,3087,3104,3116,3130],{"slug":3046,"name":3046,"fn":3047,"description":3048,"org":3049,"tags":3050,"stars":22,"repoUrl":23,"updatedAt":3058},"codegen","generate code from UI specifications","Code generation utilities for json-render. Use when generating code from UI specs, building custom code exporters, traversing specs, or serializing props for @json-render\u002Fcodegen.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3051,3054,3057],{"name":3052,"slug":3053,"type":15},"Code Generation","code-generation",{"name":3055,"slug":3056,"type":15},"Engineering","engineering",{"name":17,"slug":18,"type":15},"2026-07-17T06:08:34.68038",{"slug":3060,"name":3060,"fn":3061,"description":3062,"org":3063,"tags":3064,"stars":22,"repoUrl":23,"updatedAt":3072},"devtools","inspect and debug generative UI components","Drop-in inspector panel for any json-render app. Use when the user wants to debug a generative UI, inspect the spec tree, edit state at runtime, see dispatched actions, follow stream patches live, browse a catalog, or pick DOM elements to find their spec keys. Triggers include \"add devtools\", \"debug json-render\", \"inspect the spec\", \"why is this element not rendering\", \"see the state at runtime\", or requests to tap streams \u002F capture action logs for `@json-render\u002Fdevtools`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3065,3068,3069],{"name":3066,"slug":3067,"type":15},"Debugging","debugging",{"name":20,"slug":21,"type":15},{"name":3070,"slug":3071,"type":15},"UI Components","ui-components","2026-07-17T06:08:35.001228",{"slug":3074,"name":3074,"fn":3075,"description":3076,"org":3077,"tags":3078,"stars":22,"repoUrl":23,"updatedAt":3086},"directives","apply custom directives to JSON specs","Pre-built custom directives for json-render — formatting, math, string manipulation, and i18n. Use when working with @json-render\u002Fdirectives, defining custom directives with defineDirective, or adding $format, $math, $concat, $count, $truncate, $pluralize, $join, or $t to specs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3079,3082,3083,3085],{"name":3080,"slug":3081,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},{"name":3084,"slug":3084,"type":15},"i18n",{"name":17,"slug":18,"type":15},"2026-07-17T06:04:05.866831",{"slug":3088,"name":3088,"fn":3089,"description":3090,"org":3091,"tags":3092,"stars":22,"repoUrl":23,"updatedAt":3103},"image","generate images from JSON specifications","Image renderer for json-render that turns JSON specs into SVG and PNG images via Satori. Use when working with @json-render\u002Fimage, generating OG images from JSON, creating social cards, or rendering AI-generated image specs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3093,3096,3097,3100],{"name":3094,"slug":3095,"type":15},"Images","images",{"name":17,"slug":18,"type":15},{"name":3098,"slug":3099,"type":15},"Satori","satori",{"name":3101,"slug":3102,"type":15},"SVG","svg","2026-07-17T06:07:42.441875",{"slug":3105,"name":3105,"fn":3106,"description":3107,"org":3108,"tags":3109,"stars":22,"repoUrl":23,"updatedAt":3115},"ink","render JSON specs as terminal UIs","Ink terminal renderer for json-render that turns JSON specs into interactive terminal UIs. Use when working with @json-render\u002Fink, building terminal UIs from JSON, creating terminal component catalogs, or rendering AI-generated specs in the terminal.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3110,3113,3114],{"name":3111,"slug":3112,"type":15},"CLI","cli",{"name":17,"slug":18,"type":15},{"name":3070,"slug":3071,"type":15},"2026-07-17T06:08:28.678043",{"slug":3117,"name":3117,"fn":3118,"description":3119,"org":3120,"tags":3121,"stars":22,"repoUrl":23,"updatedAt":3129},"jotai","manage state with Jotai","Jotai adapter for json-render's StateStore interface. Use when integrating json-render with Jotai for state management via @json-render\u002Fjotai.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3122,3123,3126],{"name":20,"slug":21,"type":15},{"name":3124,"slug":3125,"type":15},"React","react",{"name":3127,"slug":3128,"type":15},"State Management","state-management","2026-07-17T06:05:48.244622",{"slug":3131,"name":3131,"fn":3132,"description":3133,"org":3134,"tags":3135,"stars":22,"repoUrl":23,"updatedAt":3141},"mcp","render interactive UIs with MCP","MCP Apps integration for json-render. Use when building MCP servers that render interactive UIs in Claude, ChatGPT, Cursor, or VS Code, or when integrating json-render with the Model Context Protocol.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3136,3137,3138,3140],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":3139,"slug":3131,"type":15},"MCP",{"name":3070,"slug":3071,"type":15},"2026-07-17T06:05:41.274723",{"items":3143,"total":3303},[3144,3160,3172,3184,3199,3214,3226,3239,3252,3265,3275,3288],{"slug":3145,"name":3145,"fn":3146,"description":3147,"org":3148,"tags":3149,"stars":3157,"repoUrl":3158,"updatedAt":3159},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3150,3153,3154],{"name":3151,"slug":3152,"type":15},"Agents","agents",{"name":3080,"slug":3081,"type":15},{"name":3155,"slug":3156,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":3161,"name":3161,"fn":3162,"description":3163,"org":3164,"tags":3165,"stars":3157,"repoUrl":3158,"updatedAt":3171},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3166,3167,3170],{"name":3080,"slug":3081,"type":15},{"name":3168,"slug":3169,"type":15},"AWS","aws",{"name":3155,"slug":3156,"type":15},"2026-07-17T06:08:33.665276",{"slug":3173,"name":3173,"fn":3174,"description":3175,"org":3176,"tags":3177,"stars":3157,"repoUrl":3158,"updatedAt":3183},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3178,3179,3180],{"name":3151,"slug":3152,"type":15},{"name":3155,"slug":3156,"type":15},{"name":3181,"slug":3182,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":3185,"name":3185,"fn":3186,"description":3187,"org":3188,"tags":3189,"stars":3157,"repoUrl":3158,"updatedAt":3198},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3190,3193,3194,3195],{"name":3191,"slug":3192,"type":15},"API Development","api-development",{"name":3080,"slug":3081,"type":15},{"name":3155,"slug":3156,"type":15},{"name":3196,"slug":3197,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":3200,"name":3200,"fn":3201,"description":3202,"org":3203,"tags":3204,"stars":3157,"repoUrl":3158,"updatedAt":3213},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3205,3206,3207,3210],{"name":3155,"slug":3156,"type":15},{"name":3066,"slug":3067,"type":15},{"name":3208,"slug":3209,"type":15},"QA","qa",{"name":3211,"slug":3212,"type":15},"Testing","testing","2026-07-17T06:07:41.421482",{"slug":3215,"name":3215,"fn":3216,"description":3217,"org":3218,"tags":3219,"stars":3157,"repoUrl":3158,"updatedAt":3225},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3220,3221,3222],{"name":3151,"slug":3152,"type":15},{"name":3155,"slug":3156,"type":15},{"name":3223,"slug":3224,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":3227,"name":3227,"fn":3228,"description":3229,"org":3230,"tags":3231,"stars":3157,"repoUrl":3158,"updatedAt":3238},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3232,3233,3236],{"name":3155,"slug":3156,"type":15},{"name":3234,"slug":3235,"type":15},"Messaging","messaging",{"name":3237,"slug":3227,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":3240,"name":3240,"fn":3241,"description":3242,"org":3243,"tags":3244,"stars":3157,"repoUrl":3158,"updatedAt":3251},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3245,3246,3247,3248],{"name":3080,"slug":3081,"type":15},{"name":3155,"slug":3156,"type":15},{"name":3211,"slug":3212,"type":15},{"name":3249,"slug":3250,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":3253,"name":3253,"fn":3254,"description":3255,"org":3256,"tags":3257,"stars":3262,"repoUrl":3263,"updatedAt":3264},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3258,3261],{"name":3259,"slug":3260,"type":15},"Deployment","deployment",{"name":3249,"slug":3250,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":3266,"name":3266,"fn":3267,"description":3268,"org":3269,"tags":3270,"stars":3262,"repoUrl":3263,"updatedAt":3274},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3271,3272,3273],{"name":3111,"slug":3112,"type":15},{"name":3259,"slug":3260,"type":15},{"name":3249,"slug":3250,"type":15},"2026-07-17T06:08:41.84179",{"slug":3276,"name":3276,"fn":3277,"description":3278,"org":3279,"tags":3280,"stars":3262,"repoUrl":3263,"updatedAt":3287},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3281,3284,3285,3286],{"name":3282,"slug":3283,"type":15},"Best Practices","best-practices",{"name":20,"slug":21,"type":15},{"name":3124,"slug":3125,"type":15},{"name":3070,"slug":3071,"type":15},"2026-07-17T06:05:40.576913",{"slug":3289,"name":3289,"fn":3290,"description":3291,"org":3292,"tags":3293,"stars":3262,"repoUrl":3263,"updatedAt":3302},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3294,3297,3298,3301],{"name":3295,"slug":3296,"type":15},"Cost Optimization","cost-optimization",{"name":3259,"slug":3260,"type":15},{"name":3299,"slug":3300,"type":15},"Performance","performance",{"name":3249,"slug":3250,"type":15},"2026-07-17T06:04:08.327515",100]