previewcn 0.1.0-alpha.3 → 0.1.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/dist/index.js +28 -10
  2. package/editor/apps/web/.next/BUILD_ID +1 -1
  3. package/editor/apps/web/.next/build-manifest.json +2 -2
  4. package/editor/apps/web/.next/prerender-manifest.json +3 -3
  5. package/editor/apps/web/.next/server/app/_global-error.html +2 -2
  6. package/editor/apps/web/.next/server/app/_global-error.rsc +1 -1
  7. package/editor/apps/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  8. package/editor/apps/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  9. package/editor/apps/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  10. package/editor/apps/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  11. package/editor/apps/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  12. package/editor/apps/web/.next/server/app/_not-found.html +1 -1
  13. package/editor/apps/web/.next/server/app/_not-found.rsc +1 -1
  14. package/editor/apps/web/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
  15. package/editor/apps/web/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  16. package/editor/apps/web/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
  17. package/editor/apps/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  18. package/editor/apps/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  19. package/editor/apps/web/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
  20. package/editor/apps/web/.next/server/app/index.html +1 -1
  21. package/editor/apps/web/.next/server/app/index.rsc +1 -1
  22. package/editor/apps/web/.next/server/app/index.segments/!KGVkaXRvcik/__PAGE__.segment.rsc +1 -1
  23. package/editor/apps/web/.next/server/app/index.segments/!KGVkaXRvcik.segment.rsc +1 -1
  24. package/editor/apps/web/.next/server/app/index.segments/_full.segment.rsc +1 -1
  25. package/editor/apps/web/.next/server/app/index.segments/_head.segment.rsc +1 -1
  26. package/editor/apps/web/.next/server/app/index.segments/_index.segment.rsc +1 -1
  27. package/editor/apps/web/.next/server/app/index.segments/_tree.segment.rsc +1 -1
  28. package/editor/apps/web/.next/server/app/opengraph-image/route/middleware-manifest.json +5 -5
  29. package/editor/apps/web/.next/server/app/preview/page_client-reference-manifest.js +1 -1
  30. package/editor/apps/web/.next/server/app/preview.html +1 -1
  31. package/editor/apps/web/.next/server/app/preview.rsc +3 -3
  32. package/editor/apps/web/.next/server/app/preview.segments/_full.segment.rsc +3 -3
  33. package/editor/apps/web/.next/server/app/preview.segments/_head.segment.rsc +1 -1
  34. package/editor/apps/web/.next/server/app/preview.segments/_index.segment.rsc +1 -1
  35. package/editor/apps/web/.next/server/app/preview.segments/_tree.segment.rsc +1 -1
  36. package/editor/apps/web/.next/server/app/preview.segments/preview/__PAGE__.segment.rsc +3 -3
  37. package/editor/apps/web/.next/server/app/preview.segments/preview.segment.rsc +1 -1
  38. package/editor/apps/web/.next/server/app/twitter-image/route/middleware-manifest.json +5 -5
  39. package/editor/apps/web/.next/server/chunks/ssr/_2e9a4884._.js +10 -1
  40. package/editor/apps/web/.next/server/middleware-manifest.json +10 -10
  41. package/editor/apps/web/.next/server/pages/404.html +1 -1
  42. package/editor/apps/web/.next/server/pages/500.html +2 -2
  43. package/editor/apps/web/.next/server/server-reference-manifest.js +1 -1
  44. package/editor/apps/web/.next/server/server-reference-manifest.json +1 -1
  45. package/editor/apps/web/.next/static/chunks/541ab79f7709fec4.js +10 -0
  46. package/editor/node_modules/.pnpm/node_modules/semver/classes/comparator.js +143 -0
  47. package/editor/node_modules/.pnpm/node_modules/semver/classes/range.js +557 -0
  48. package/editor/node_modules/.pnpm/node_modules/semver/classes/semver.js +333 -0
  49. package/editor/node_modules/.pnpm/node_modules/semver/functions/cmp.js +54 -0
  50. package/editor/node_modules/.pnpm/node_modules/semver/functions/coerce.js +62 -0
  51. package/editor/node_modules/.pnpm/node_modules/semver/functions/compare.js +7 -0
  52. package/editor/node_modules/.pnpm/node_modules/semver/functions/eq.js +5 -0
  53. package/editor/node_modules/.pnpm/node_modules/semver/functions/gt.js +5 -0
  54. package/editor/node_modules/.pnpm/node_modules/semver/functions/gte.js +5 -0
  55. package/editor/node_modules/.pnpm/node_modules/semver/functions/lt.js +5 -0
  56. package/editor/node_modules/.pnpm/node_modules/semver/functions/lte.js +5 -0
  57. package/editor/node_modules/.pnpm/node_modules/semver/functions/neq.js +5 -0
  58. package/editor/node_modules/.pnpm/node_modules/semver/functions/parse.js +18 -0
  59. package/editor/node_modules/.pnpm/node_modules/semver/functions/satisfies.js +12 -0
  60. package/editor/node_modules/.pnpm/node_modules/semver/internal/constants.js +37 -0
  61. package/editor/node_modules/.pnpm/node_modules/semver/internal/debug.js +11 -0
  62. package/editor/node_modules/.pnpm/node_modules/semver/internal/identifiers.js +29 -0
  63. package/editor/node_modules/.pnpm/node_modules/semver/internal/lrucache.js +42 -0
  64. package/editor/node_modules/.pnpm/node_modules/semver/internal/parse-options.js +17 -0
  65. package/editor/node_modules/.pnpm/node_modules/semver/internal/re.js +223 -0
  66. package/editor/node_modules/.pnpm/node_modules/semver/package.json +78 -0
  67. package/package.json +1 -1
  68. package/editor/apps/web/.next/static/chunks/821f5f567c1bc529.js +0 -1
  69. /package/editor/apps/web/.next/static/{KkYBQ0zXX1U9zi1qJZ5zW → 7bhvnDbT83Hnacec7beWN}/_buildManifest.js +0 -0
  70. /package/editor/apps/web/.next/static/{KkYBQ0zXX1U9zi1qJZ5zW → 7bhvnDbT83Hnacec7beWN}/_clientMiddlewareManifest.json +0 -0
  71. /package/editor/apps/web/.next/static/{KkYBQ0zXX1U9zi1qJZ5zW → 7bhvnDbT83Hnacec7beWN}/_ssgManifest.js +0 -0
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import {Command}from'commander';import T from'fs/promises';import l from'path';import {fileURLToPath}from'url';import h from'chalk';import {execa}from'execa';import j from'ora';import F from'prompts';var y="http://localhost:3000",k="4000";var t={info:e=>console.log(h.blue("info"),e),success:e=>console.log(h.green("success"),e),warn:e=>console.log(h.yellow("warn"),e),error:e=>console.log(h.red("error"),e),hint:e=>console.log(h.gray("hint"),e)};async function A(e){let r=e.target||y,n=e.port||k;t.info("Starting PreviewCN editor..."),t.info(`Target: ${h.cyan(r)}`),t.info(`Editor: ${h.cyan(`http://localhost:${n}`)}`),console.log();let i=l.dirname(fileURLToPath(import.meta.url)),a=l.resolve(i,"..","editor"),o=l.join(a,"apps","web","server.js");try{await T.access(o);}catch{t.error("Editor not found. This might be a development build issue."),t.hint("Try reinstalling previewcn: npm install -g previewcn"),process.exit(1);}let p=j("Starting editor server...").start();try{let s=l.join(a,"node_modules",".pnpm","node_modules"),d={...process.env,PORT:n,HOSTNAME:"0.0.0.0",PREVIEWCN_TARGET_URL:r,NODE_PATH:s};p.succeed("Editor server started"),console.log(),t.success(`PreviewCN is ready at ${h.cyan(`http://localhost:${n}`)}`),console.log(),t.info("Press Ctrl+C to stop"),console.log(),await execa("node",[o],{cwd:a,env:d,stdio:"inherit"});}catch(s){p.fail("Failed to start editor"),s instanceof Error&&"code"in s&&s.code==="ENOENT"?(t.error("Could not find Node.js executable in PATH."),t.hint("Ensure Node.js is properly installed and available in your PATH.")):(t.error("Editor server failed to start."),s instanceof Error&&t.error(`Error: ${s.message}`)),process.exit(1);}}async function P(e){let r={isNextJs:false,isAppRouter:false};try{let i=l.join(e,"package.json"),a=await T.readFile(i,"utf-8"),o=JSON.parse(a);r.isNextJs=!!(o.dependencies?.next||o.devDependencies?.next);}catch{return r}let n=[l.join(e,"app"),l.join(e,"src","app")];for(let i of n)try{if((await T.stat(i)).isDirectory()){r.isAppRouter=!0;break}}catch{}return r}async function R(e){let r=[l.join(e,"app","layout.tsx"),l.join(e,"app","layout.ts"),l.join(e,"app","layout.jsx"),l.join(e,"app","layout.js"),l.join(e,"src","app","layout.tsx"),l.join(e,"src","app","layout.ts"),l.join(e,"src","app","layout.jsx"),l.join(e,"src","app","layout.js")];for(let n of r)try{return await T.access(n),n}catch{}return null}var _=`"use client";
2
+ import {Command}from'commander';import R from'fs/promises';import l from'path';import {fileURLToPath}from'url';import E from'chalk';import {execa}from'execa';import _ from'ora';import F from'prompts';var y="http://localhost:3000",j="4000";var t={info:e=>console.log(E.blue("info"),e),success:e=>console.log(E.green("success"),e),warn:e=>console.log(E.yellow("warn"),e),error:e=>console.log(E.red("error"),e),hint:e=>console.log(E.gray("hint"),e)};async function k(e){let r=e.target||y,n=e.port||j;t.info("Starting PreviewCN editor..."),t.info(`Target: ${E.cyan(r)}`),t.info(`Editor: ${E.cyan(`http://localhost:${n}`)}`),console.log();let i=l.dirname(fileURLToPath(import.meta.url)),a=l.resolve(i,"..","editor"),o=l.join(a,"apps","web","server.js");try{await R.access(o);}catch{t.error("Editor not found. This might be a development build issue."),t.hint("Try reinstalling previewcn: npm install -g previewcn"),process.exit(1);}let p=_("Starting editor server...").start();try{let s=l.join(a,"node_modules",".pnpm","node_modules"),d={...process.env,PORT:n,HOSTNAME:"0.0.0.0",PREVIEWCN_TARGET_URL:r,NODE_PATH:s};p.succeed("Editor server started"),console.log(),t.success(`PreviewCN is ready at ${E.cyan(`http://localhost:${n}`)}`),console.log(),t.info("Press Ctrl+C to stop"),console.log(),await execa("node",[o],{cwd:a,env:d,stdio:"inherit"});}catch(s){p.fail("Failed to start editor"),s instanceof Error&&"code"in s&&s.code==="ENOENT"?(t.error("Could not find Node.js executable in PATH."),t.hint("Ensure Node.js is properly installed and available in your PATH.")):(t.error("Editor server failed to start."),s instanceof Error&&t.error(`Error: ${s.message}`)),process.exit(1);}}async function T(e){let r={isNextJs:false,isAppRouter:false};try{let i=l.join(e,"package.json"),a=await R.readFile(i,"utf-8"),o=JSON.parse(a);r.isNextJs=!!(o.dependencies?.next||o.devDependencies?.next);}catch{return r}let n=[l.join(e,"app"),l.join(e,"src","app")];for(let i of n)try{if((await R.stat(i)).isDirectory()){r.isAppRouter=!0;break}}catch{}return r}async function P(e){let r=[l.join(e,"app","layout.tsx"),l.join(e,"app","layout.ts"),l.join(e,"app","layout.jsx"),l.join(e,"app","layout.js"),l.join(e,"src","app","layout.tsx"),l.join(e,"src","app","layout.ts"),l.join(e,"src","app","layout.jsx"),l.join(e,"src","app","layout.js")];for(let n of r)try{return await R.access(n),n}catch{}return null}var A=`"use client";
3
3
 
4
4
  import { useEffect } from "react";
5
5
 
@@ -63,9 +63,10 @@ type PreviewCNMessage = ThemeMessage | HandshakeMessage;
63
63
  // ============================================================================
64
64
 
65
65
  const THEME_COLOR_STYLE_ID = "previewcn-theme-colors";
66
+ const THEME_FONT_STYLE_ID = "previewcn-theme-font";
66
67
 
67
- function getOrCreateThemeColorStyleElement(): HTMLStyleElement {
68
- const existing = document.getElementById(THEME_COLOR_STYLE_ID);
68
+ function getOrCreateStyleElement(id: string): HTMLStyleElement {
69
+ const existing = document.getElementById(id);
69
70
  if (existing instanceof HTMLStyleElement) {
70
71
  return existing;
71
72
  }
@@ -75,11 +76,19 @@ function getOrCreateThemeColorStyleElement(): HTMLStyleElement {
75
76
  }
76
77
 
77
78
  const styleEl = document.createElement("style");
78
- styleEl.id = THEME_COLOR_STYLE_ID;
79
+ styleEl.id = id;
79
80
  document.head.appendChild(styleEl);
80
81
  return styleEl;
81
82
  }
82
83
 
84
+ function getOrCreateThemeColorStyleElement(): HTMLStyleElement {
85
+ return getOrCreateStyleElement(THEME_COLOR_STYLE_ID);
86
+ }
87
+
88
+ function getOrCreateThemeFontStyleElement(): HTMLStyleElement {
89
+ return getOrCreateStyleElement(THEME_FONT_STYLE_ID);
90
+ }
91
+
83
92
  function serializeCssVars(cssVars: Record<string, string>): string {
84
93
  return Object.entries(cssVars)
85
94
  .map(([key, value]) => \`--\${key}: \${value};\`)
@@ -161,8 +170,17 @@ export function PreviewCNThemeReceiver() {
161
170
  document.head.appendChild(link);
162
171
  }
163
172
 
164
- root.style.setProperty("--font-sans-override", fontFamily);
165
- root.style.setProperty("--font-sans", fontFamily);
173
+ const styleEl = getOrCreateThemeFontStyleElement();
174
+ styleEl.textContent = \`
175
+ :root {
176
+ --font-sans: \${fontFamily} !important;
177
+ --font-sans-override: \${fontFamily} !important;
178
+ --font-geist-sans: \${fontFamily} !important;
179
+ }
180
+ html, body, .font-sans {
181
+ font-family: \${fontFamily} !important;
182
+ }
183
+ \`;
166
184
  }
167
185
  };
168
186
 
@@ -172,10 +190,10 @@ export function PreviewCNThemeReceiver() {
172
190
 
173
191
  return null;
174
192
  }
175
- `,f="previewcn-theme-receiver.tsx";function H(e,r){let n=l.dirname(e),i=l.relative(n,r),a=f.replace(/\.tsx$/,""),o=l.posix.join(i.split(l.sep).join(l.posix.sep),a);return o.startsWith(".")?o:`./${o}`}function G(e){return `import { PreviewCNThemeReceiver } from "${e}";`}var J='{process.env.NODE_ENV === "development" && <PreviewCNThemeReceiver />}';async function I(e,r){let n=await T.readFile(e,"utf-8");if(n.includes("PreviewCNThemeReceiver"))return;let i=H(e,r),a=G(i),o=n,p=/^import[\s\S]*?from\s*['"][^'"]+['"];?\s*$/gm,s=[...o.matchAll(p)];if(s.length>0){let c=s[s.length-1],u=c.index+c[0].length;o=o.slice(0,u)+`
193
+ `,f="previewcn-theme-receiver.tsx";function H(e,r){let n=l.dirname(e),i=l.relative(n,r),a=f.replace(/\.tsx$/,""),o=l.posix.join(i.split(l.sep).join(l.posix.sep),a);return o.startsWith(".")?o:`./${o}`}function G(e){return `import { PreviewCNThemeReceiver } from "${e}";`}var J='{process.env.NODE_ENV === "development" && <PreviewCNThemeReceiver />}';async function I(e,r){let n=await R.readFile(e,"utf-8");if(n.includes("PreviewCNThemeReceiver"))return;let i=H(e,r),a=G(i),o=n,p=/^import[\s\S]*?from\s*['"][^'"]+['"];?\s*$/gm,s=[...o.matchAll(p)];if(s.length>0){let c=s[s.length-1],u=c.index+c[0].length;o=o.slice(0,u)+`
176
194
  `+a+o.slice(u);}else o=a+`
177
195
 
178
196
  `+o;let d=o.match(/<body[^>]*>/);if(d){let c=d.index+d[0].length;o=o.slice(0,c)+`
179
- `+J+o.slice(c);}await T.writeFile(e,o,"utf-8");}async function L(e){try{return (await T.readFile(e,"utf-8")).includes("PreviewCNThemeReceiver")}catch{return false}}async function D(e){let r=[l.join(e,"components",f),l.join(e,"src","components",f),l.join(e,"app","components",f)];for(let n of r)try{return await T.access(n),!0}catch{}return false}async function O(){t.info(`Running PreviewCN diagnostics...
180
- `);let e=[],r=await P(process.cwd());e.push({name:"Next.js App Router",pass:r.isNextJs&&r.isAppRouter,message:r.isNextJs?r.isAppRouter?"Detected":"App Router not found (using Pages Router?)":"Not a Next.js project"});let n=await D(process.cwd());e.push({name:"PreviewCN receiver file",pass:n,message:n?"Found":"Not found (run `npx previewcn init`)"});let i=false,a=await R(process.cwd());a&&(i=await L(a)),e.push({name:"ThemeReceiver in layout",pass:i,message:i?"Found":"Not found in layout"});let o=false;try{o=(await fetch(y,{method:"HEAD",signal:AbortSignal.timeout(3e3)})).ok;}catch{}e.push({name:`Target app (${y})`,pass:o,message:o?"Running":"Not running"}),console.log();for(let s of e){let d=s.pass?h.green("\u2713"):h.red("\u2717"),c=s.pass?h.green(s.message):h.red(s.message);console.log(` ${d} ${s.name}: ${c}`);}console.log(),e.every(s=>s.pass)?t.success("All checks passed! PreviewCN is ready to use."):t.warn("Some checks failed. Run `npx previewcn init` to set up.");}async function W(e){let r=[l.join(e,"components"),l.join(e,"src","components"),l.join(e,"app","components")];for(let n of r)try{if((await T.stat(n)).isDirectory())return n}catch{}return l.join(e,"components")}async function S(e){t.info(`Initializing PreviewCN...
181
- `);let r=j("Detecting project type...").start(),n=await P(process.cwd());n.isNextJs||(r.fail("Not a Next.js project"),t.error("PreviewCN requires a Next.js project with App Router."),t.hint("Make sure you're in the root of a Next.js project."),process.exit(1)),n.isAppRouter||(r.fail("App Router not detected"),t.error("PreviewCN requires Next.js App Router (app/ directory)."),t.hint("Create an app/ directory or migrate from pages/ to app/."),process.exit(1)),r.succeed("Next.js App Router project detected");let i=await R(process.cwd());i||(t.error("Could not find app/layout.tsx"),process.exit(1)),t.info(`Found layout at: ${h.cyan(l.relative(process.cwd(),i))}`);let a=await W(process.cwd()),o=l.join(a,f),p=l.relative(process.cwd(),o),s=false;try{await T.access(o),s=!0;}catch{}if(s&&!e.force&&(t.info(`Receiver already exists at: ${h.cyan(p)}`),(await F({type:"confirm",name:"overwrite",message:"Overwrite existing receiver file?",initial:false})).overwrite?s=false:t.info("Skipping receiver file generation.")),!e.yes&&!s&&((await F({type:"confirm",name:"proceed",message:`This will create ${h.cyan(p)} and modify your layout. Continue?`,initial:true})).proceed||(t.info("Aborted."),process.exit(0))),!s||e.force){let c=j(`Creating ${p}...`).start();try{await T.mkdir(a,{recursive:!0}),await T.writeFile(o,_,"utf-8"),c.succeed(`Created ${p}`);}catch(u){c.fail(`Failed to create ${p}`),t.error(u instanceof Error?u.message:String(u)),process.exit(1);}}let d=j("Adding PreviewCNThemeReceiver to layout...").start();try{await I(i,a),d.succeed("Added PreviewCNThemeReceiver to layout");}catch(c){d.fail("Failed to modify layout"),t.error(c instanceof Error?c.message:String(c)),t.hint("You may need to add PreviewCNThemeReceiver manually. See documentation."),process.exit(1);}console.log(),t.success("PreviewCN initialized successfully!"),console.log(),t.info("Next steps:"),console.log(" 1. Start your development server"),console.log(` 2. Run the PreviewCN editor: ${h.cyan("npx previewcn dev")}`),console.log();}var E=new Command;E.name("previewcn").description("CLI for PreviewCN - real-time shadcn/ui theme editor").version("0.1.0");E.command("init").description("Initialize PreviewCN in your Next.js project").option("-y, --yes","Skip confirmation prompts").option("-f, --force","Overwrite existing receiver file").action(S);E.command("dev").description("Start the PreviewCN theme editor").option("-t, --target <url>","Target URL to preview","http://localhost:3000").option("-p, --port <port>","Port for the editor","4000").action(A);E.command("doctor").description("Check PreviewCN setup and diagnose issues").action(O);E.parse();
197
+ `+J+o.slice(c);}await R.writeFile(e,o,"utf-8");}async function L(e){try{return (await R.readFile(e,"utf-8")).includes("PreviewCNThemeReceiver")}catch{return false}}async function O(e){let r=[l.join(e,"components",f),l.join(e,"src","components",f),l.join(e,"app","components",f)];for(let n of r)try{return await R.access(n),!0}catch{}return false}async function D(){t.info(`Running PreviewCN diagnostics...
198
+ `);let e=[],r=await T(process.cwd());e.push({name:"Next.js App Router",pass:r.isNextJs&&r.isAppRouter,message:r.isNextJs?r.isAppRouter?"Detected":"App Router not found (using Pages Router?)":"Not a Next.js project"});let n=await O(process.cwd());e.push({name:"PreviewCN receiver file",pass:n,message:n?"Found":"Not found (run `npx previewcn init`)"});let i=false,a=await P(process.cwd());a&&(i=await L(a)),e.push({name:"ThemeReceiver in layout",pass:i,message:i?"Found":"Not found in layout"});let o=false;try{o=(await fetch(y,{method:"HEAD",signal:AbortSignal.timeout(3e3)})).ok;}catch{}e.push({name:`Target app (${y})`,pass:o,message:o?"Running":"Not running"}),console.log();for(let s of e){let d=s.pass?E.green("\u2713"):E.red("\u2717"),c=s.pass?E.green(s.message):E.red(s.message);console.log(` ${d} ${s.name}: ${c}`);}console.log(),e.every(s=>s.pass)?t.success("All checks passed! PreviewCN is ready to use."):t.warn("Some checks failed. Run `npx previewcn init` to set up.");}async function W(e){let r=[l.join(e,"components"),l.join(e,"src","components"),l.join(e,"app","components")];for(let n of r)try{if((await R.stat(n)).isDirectory())return n}catch{}return l.join(e,"components")}async function S(e){t.info(`Initializing PreviewCN...
199
+ `);let r=_("Detecting project type...").start(),n=await T(process.cwd());n.isNextJs||(r.fail("Not a Next.js project"),t.error("PreviewCN requires a Next.js project with App Router."),t.hint("Make sure you're in the root of a Next.js project."),process.exit(1)),n.isAppRouter||(r.fail("App Router not detected"),t.error("PreviewCN requires Next.js App Router (app/ directory)."),t.hint("Create an app/ directory or migrate from pages/ to app/."),process.exit(1)),r.succeed("Next.js App Router project detected");let i=await P(process.cwd());i||(t.error("Could not find app/layout.tsx"),process.exit(1)),t.info(`Found layout at: ${E.cyan(l.relative(process.cwd(),i))}`);let a=await W(process.cwd()),o=l.join(a,f),p=l.relative(process.cwd(),o),s=false;try{await R.access(o),s=!0;}catch{}if(s&&!e.force&&(t.info(`Receiver already exists at: ${E.cyan(p)}`),(await F({type:"confirm",name:"overwrite",message:"Overwrite existing receiver file?",initial:false})).overwrite?s=false:t.info("Skipping receiver file generation.")),!e.yes&&!s&&((await F({type:"confirm",name:"proceed",message:`This will create ${E.cyan(p)} and modify your layout. Continue?`,initial:true})).proceed||(t.info("Aborted."),process.exit(0))),!s||e.force){let c=_(`Creating ${p}...`).start();try{await R.mkdir(a,{recursive:!0}),await R.writeFile(o,A,"utf-8"),c.succeed(`Created ${p}`);}catch(u){c.fail(`Failed to create ${p}`),t.error(u instanceof Error?u.message:String(u)),process.exit(1);}}let d=_("Adding PreviewCNThemeReceiver to layout...").start();try{await I(i,a),d.succeed("Added PreviewCNThemeReceiver to layout");}catch(c){d.fail("Failed to modify layout"),t.error(c instanceof Error?c.message:String(c)),t.hint("You may need to add PreviewCNThemeReceiver manually. See documentation."),process.exit(1);}console.log(),t.success("PreviewCN initialized successfully!"),console.log(),t.info("Next steps:"),console.log(" 1. Start your development server"),console.log(` 2. Run the PreviewCN editor: ${E.cyan("npx previewcn dev")}`),console.log();}var h=new Command;h.name("previewcn").description("CLI for PreviewCN - real-time shadcn/ui theme editor").version("0.1.0");h.command("init").description("Initialize PreviewCN in your Next.js project").option("-y, --yes","Skip confirmation prompts").option("-f, --force","Overwrite existing receiver file").action(S);h.command("dev").description("Start the PreviewCN theme editor").option("-t, --target <url>","Target URL to preview","http://localhost:3000").option("-p, --port <port>","Port for the editor","4000").action(k);h.command("doctor").description("Check PreviewCN setup and diagnose issues").action(D);h.parse();
@@ -1 +1 @@
1
- KkYBQ0zXX1U9zi1qJZ5zW
1
+ 7bhvnDbT83Hnacec7beWN
@@ -7,8 +7,8 @@
7
7
  "static/chunks/a6dad97d9634a72d.js"
8
8
  ],
9
9
  "lowPriorityFiles": [
10
- "static/KkYBQ0zXX1U9zi1qJZ5zW/_ssgManifest.js",
11
- "static/KkYBQ0zXX1U9zi1qJZ5zW/_buildManifest.js"
10
+ "static/7bhvnDbT83Hnacec7beWN/_ssgManifest.js",
11
+ "static/7bhvnDbT83Hnacec7beWN/_buildManifest.js"
12
12
  ],
13
13
  "rootMainFiles": [
14
14
  "static/chunks/5ec51a189c1f7aa8.js",
@@ -102,8 +102,8 @@
102
102
  "dynamicRoutes": {},
103
103
  "notFoundRoutes": [],
104
104
  "preview": {
105
- "previewModeId": "04a0ddc307ee35b16ebff7be05303c0d",
106
- "previewModeSigningKey": "ec7fc637cf781a3ba70797c8acd468d8fe4f516a0536a185ac1d2e456ef46f35",
107
- "previewModeEncryptionKey": "0bb7d141d41f6d194d6e5f30e3571ad8a62b721fc04b95011508fb59b2c540f5"
105
+ "previewModeId": "59965ae1543853011c8c897babfd11cc",
106
+ "previewModeSigningKey": "73611d72de50e8970d3d569b8649678216e001f895ee4f6436481f6ffcd64a7f",
107
+ "previewModeEncryptionKey": "eed50c6e71687d6518fbbd3c84e5c42db04088579f4994cfe2fddd2059ec4552"
108
108
  }
109
109
  }
@@ -1,2 +1,2 @@
1
- <!DOCTYPE html><!--KkYBQ0zXX1U9zi1qJZ5zW--><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/5ec51a189c1f7aa8.js"/><script src="/_next/static/chunks/a3a742a24bb6adf8.js" async=""></script><script src="/_next/static/chunks/eb25e50586ec85f5.js" async=""></script><script src="/_next/static/chunks/turbopack-aa5ad1db28689abb.js" async=""></script><script src="/_next/static/chunks/01753452ac5baafa.js" async=""></script><script src="/_next/static/chunks/581bc467369151d4.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: Internal Server Error.</title><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}
2
- @media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/5ec51a189c1f7aa8.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[58625,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n3:I[24554,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n4:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"ViewportBoundary\"]\n9:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"MetadataBoundary\"]\nb:I[33834,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"KkYBQ0zXX1U9zi1qJZ5zW\",\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"title\",null,{\"children\":\"500: Internal Server Error.\"}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"lineHeight\":\"48px\"},\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"paddingRight\":23,\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\"},\"children\":\"500\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"28px\"},\"children\":\"Internal Server Error.\"}]}]]}]}]}]]}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/01753452ac5baafa.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/581bc467369151d4.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\na:[]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--7bhvnDbT83Hnacec7beWN--><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/5ec51a189c1f7aa8.js"/><script src="/_next/static/chunks/a3a742a24bb6adf8.js" async=""></script><script src="/_next/static/chunks/eb25e50586ec85f5.js" async=""></script><script src="/_next/static/chunks/turbopack-aa5ad1db28689abb.js" async=""></script><script src="/_next/static/chunks/01753452ac5baafa.js" async=""></script><script src="/_next/static/chunks/581bc467369151d4.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: Internal Server Error.</title><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}
2
+ @media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/5ec51a189c1f7aa8.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[58625,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n3:I[24554,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n4:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"ViewportBoundary\"]\n9:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"MetadataBoundary\"]\nb:I[33834,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"7bhvnDbT83Hnacec7beWN\",\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"title\",null,{\"children\":\"500: Internal Server Error.\"}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"lineHeight\":\"48px\"},\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"paddingRight\":23,\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\"},\"children\":\"500\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"28px\"},\"children\":\"Internal Server Error.\"}]}]]}]}]}]]}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/01753452ac5baafa.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/581bc467369151d4.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\na:[]\n"])</script></body></html>
@@ -6,7 +6,7 @@
6
6
  7:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"ViewportBoundary"]
7
7
  9:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"MetadataBoundary"]
8
8
  b:I[33834,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
9
- 0:{"P":null,"b":"KkYBQ0zXX1U9zi1qJZ5zW","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/01753452ac5baafa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/581bc467369151d4.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
9
+ 0:{"P":null,"b":"7bhvnDbT83Hnacec7beWN","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/01753452ac5baafa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/581bc467369151d4.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
10
10
  8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
11
11
  6:null
12
12
  a:[]
@@ -1,5 +1,5 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"OutletBoundary"]
3
3
  3:"$Sreact.suspense"
4
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/01753452ac5baafa.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/581bc467369151d4.js","async":true}]],["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/01753452ac5baafa.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/581bc467369151d4.js","async":true}]],["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
5
5
  4:null
@@ -6,7 +6,7 @@
6
6
  7:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"ViewportBoundary"]
7
7
  9:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"MetadataBoundary"]
8
8
  b:I[33834,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
9
- 0:{"P":null,"b":"KkYBQ0zXX1U9zi1qJZ5zW","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/01753452ac5baafa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/581bc467369151d4.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
9
+ 0:{"P":null,"b":"7bhvnDbT83Hnacec7beWN","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/01753452ac5baafa.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/581bc467369151d4.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
10
10
  8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
11
11
  6:null
12
12
  a:[]
@@ -2,4 +2,4 @@
2
2
  2:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"ViewportBoundary"]
3
3
  3:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
@@ -1,4 +1,4 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[58625,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
3
3
  3:I[24554,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
4
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1 +1 @@
1
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false},"staleTime":300}
1
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false},"staleTime":300}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--KkYBQ0zXX1U9zi1qJZ5zW--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/aad7dbdc1a037806.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/5ec51a189c1f7aa8.js"/><script src="/_next/static/chunks/a3a742a24bb6adf8.js" async=""></script><script src="/_next/static/chunks/eb25e50586ec85f5.js" async=""></script><script src="/_next/static/chunks/turbopack-aa5ad1db28689abb.js" async=""></script><script src="/_next/static/chunks/01753452ac5baafa.js" async=""></script><script src="/_next/static/chunks/581bc467369151d4.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>previewcn - Real-time Theme Editor for shadcn/ui</title><meta name="description" content="Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."/><meta property="og:title" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta property="og:description" content="Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."/><meta property="og:site_name" content="previewcn"/><meta property="og:locale" content="en_US"/><meta property="og:image:alt" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta property="og:image:type" content="image/png"/><meta property="og:image" content="https://previewcn.vercel.app/opengraph-image?2857ac63cb01abc5"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:type" content="website"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:title" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta name="twitter:description" content="Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."/><meta name="twitter:image:alt" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta name="twitter:image:type" content="image/png"/><meta name="twitter:image" content="https://previewcn.vercel.app/twitter-image?2010eb46a273fda9"/><meta name="twitter:image:width" content="1200"/><meta name="twitter:image:height" content="630"/><link rel="icon" href="/logo.svg"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/5ec51a189c1f7aa8.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[58625,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n3:I[24554,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n4:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"ViewportBoundary\"]\n9:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"MetadataBoundary\"]\nb:I[33834,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n:HL[\"/_next/static/chunks/aad7dbdc1a037806.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"KkYBQ0zXX1U9zi1qJZ5zW\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/aad7dbdc1a037806.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[30743,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"IconMark\"]\n6:null\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"title\",\"0\",{\"children\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application.\"}],[\"$\",\"meta\",\"2\",{\"property\":\"og:title\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"3\",{\"property\":\"og:description\",\"content\":\"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application.\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:site_name\",\"content\":\"previewcn\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:locale\",\"content\":\"en_US\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:image:alt\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image\",\"content\":\"https://previewcn.vercel.app/opengraph-image?2857ac63cb01abc5\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"12\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:title\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:description\",\"content\":\"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application.\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:image:alt\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"16\",{\"name\":\"twitter:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"17\",{\"name\":\"twitter:image\",\"content\":\"https://previewcn.vercel.app/twitter-image?2010eb46a273fda9\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"19\",{\"name\":\"twitter:image:height\",\"content\":\"630\"}],[\"$\",\"link\",\"20\",{\"rel\":\"icon\",\"href\":\"/logo.svg\"}],[\"$\",\"$Lc\",\"21\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--7bhvnDbT83Hnacec7beWN--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/aad7dbdc1a037806.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/5ec51a189c1f7aa8.js"/><script src="/_next/static/chunks/a3a742a24bb6adf8.js" async=""></script><script src="/_next/static/chunks/eb25e50586ec85f5.js" async=""></script><script src="/_next/static/chunks/turbopack-aa5ad1db28689abb.js" async=""></script><script src="/_next/static/chunks/01753452ac5baafa.js" async=""></script><script src="/_next/static/chunks/581bc467369151d4.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>previewcn - Real-time Theme Editor for shadcn/ui</title><meta name="description" content="Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."/><meta property="og:title" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta property="og:description" content="Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."/><meta property="og:site_name" content="previewcn"/><meta property="og:locale" content="en_US"/><meta property="og:image:alt" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta property="og:image:type" content="image/png"/><meta property="og:image" content="https://previewcn.vercel.app/opengraph-image?2857ac63cb01abc5"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:type" content="website"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:title" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta name="twitter:description" content="Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."/><meta name="twitter:image:alt" content="previewcn - Real-time Theme Editor for shadcn/ui"/><meta name="twitter:image:type" content="image/png"/><meta name="twitter:image" content="https://previewcn.vercel.app/twitter-image?2010eb46a273fda9"/><meta name="twitter:image:width" content="1200"/><meta name="twitter:image:height" content="630"/><link rel="icon" href="/logo.svg"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/5ec51a189c1f7aa8.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[58625,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n3:I[24554,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n4:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"ViewportBoundary\"]\n9:I[91802,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"MetadataBoundary\"]\nb:I[33834,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"default\"]\n:HL[\"/_next/static/chunks/aad7dbdc1a037806.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"7bhvnDbT83Hnacec7beWN\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/aad7dbdc1a037806.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"c:I[30743,[\"/_next/static/chunks/01753452ac5baafa.js\",\"/_next/static/chunks/581bc467369151d4.js\"],\"IconMark\"]\n6:null\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"title\",\"0\",{\"children\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application.\"}],[\"$\",\"meta\",\"2\",{\"property\":\"og:title\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"3\",{\"property\":\"og:description\",\"content\":\"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application.\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:site_name\",\"content\":\"previewcn\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:locale\",\"content\":\"en_US\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:image:alt\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image\",\"content\":\"https://previewcn.vercel.app/opengraph-image?2857ac63cb01abc5\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"12\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:title\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:description\",\"content\":\"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application.\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:image:alt\",\"content\":\"previewcn - Real-time Theme Editor for shadcn/ui\"}],[\"$\",\"meta\",\"16\",{\"name\":\"twitter:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"17\",{\"name\":\"twitter:image\",\"content\":\"https://previewcn.vercel.app/twitter-image?2010eb46a273fda9\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"19\",{\"name\":\"twitter:image:height\",\"content\":\"630\"}],[\"$\",\"link\",\"20\",{\"rel\":\"icon\",\"href\":\"/logo.svg\"}],[\"$\",\"$Lc\",\"21\",{}]]\n"])</script></body></html>
@@ -7,7 +7,7 @@
7
7
  9:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"MetadataBoundary"]
8
8
  b:I[33834,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
9
9
  :HL["/_next/static/chunks/aad7dbdc1a037806.css","style"]
10
- 0:{"P":null,"b":"KkYBQ0zXX1U9zi1qJZ5zW","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/aad7dbdc1a037806.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
10
+ 0:{"P":null,"b":"7bhvnDbT83Hnacec7beWN","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/aad7dbdc1a037806.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
11
11
  8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
12
12
  c:I[30743,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"IconMark"]
13
13
  6:null
@@ -7,7 +7,7 @@
7
7
  9:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"MetadataBoundary"]
8
8
  b:I[33834,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
9
9
  :HL["/_next/static/chunks/aad7dbdc1a037806.css","style"]
10
- 0:{"P":null,"b":"KkYBQ0zXX1U9zi1qJZ5zW","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/aad7dbdc1a037806.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
10
+ 0:{"P":null,"b":"7bhvnDbT83Hnacec7beWN","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/aad7dbdc1a037806.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
11
11
  8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
12
12
  c:I[30743,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"IconMark"]
13
13
  6:null
@@ -3,4 +3,4 @@
3
3
  3:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
5
  5:I[30743,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"IconMark"]
6
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","1",{"name":"description","content":"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."}],["$","meta","2",{"property":"og:title","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","3",{"property":"og:description","content":"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."}],["$","meta","4",{"property":"og:site_name","content":"previewcn"}],["$","meta","5",{"property":"og:locale","content":"en_US"}],["$","meta","6",{"property":"og:image:alt","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","7",{"property":"og:image:type","content":"image/png"}],["$","meta","8",{"property":"og:image","content":"https://previewcn.vercel.app/opengraph-image?2857ac63cb01abc5"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:type","content":"website"}],["$","meta","12",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","13",{"name":"twitter:title","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","14",{"name":"twitter:description","content":"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."}],["$","meta","15",{"name":"twitter:image:alt","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","16",{"name":"twitter:image:type","content":"image/png"}],["$","meta","17",{"name":"twitter:image","content":"https://previewcn.vercel.app/twitter-image?2010eb46a273fda9"}],["$","meta","18",{"name":"twitter:image:width","content":"1200"}],["$","meta","19",{"name":"twitter:image:height","content":"630"}],["$","link","20",{"rel":"icon","href":"/logo.svg"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","1",{"name":"description","content":"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."}],["$","meta","2",{"property":"og:title","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","3",{"property":"og:description","content":"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."}],["$","meta","4",{"property":"og:site_name","content":"previewcn"}],["$","meta","5",{"property":"og:locale","content":"en_US"}],["$","meta","6",{"property":"og:image:alt","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","7",{"property":"og:image:type","content":"image/png"}],["$","meta","8",{"property":"og:image","content":"https://previewcn.vercel.app/opengraph-image?2857ac63cb01abc5"}],["$","meta","9",{"property":"og:image:width","content":"1200"}],["$","meta","10",{"property":"og:image:height","content":"630"}],["$","meta","11",{"property":"og:type","content":"website"}],["$","meta","12",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","13",{"name":"twitter:title","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","14",{"name":"twitter:description","content":"Preview and customize your shadcn/ui theme in real-time. Edit colors, radius, and modes with instant visual feedback on your actual application."}],["$","meta","15",{"name":"twitter:image:alt","content":"previewcn - Real-time Theme Editor for shadcn/ui"}],["$","meta","16",{"name":"twitter:image:type","content":"image/png"}],["$","meta","17",{"name":"twitter:image","content":"https://previewcn.vercel.app/twitter-image?2010eb46a273fda9"}],["$","meta","18",{"name":"twitter:image:width","content":"1200"}],["$","meta","19",{"name":"twitter:image:height","content":"630"}],["$","link","20",{"rel":"icon","href":"/logo.svg"}],["$","$L5","21",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
@@ -2,4 +2,4 @@
2
2
  2:I[58625,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
3
3
  3:I[24554,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
4
4
  :HL["/_next/static/chunks/aad7dbdc1a037806.css","style"]
5
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/aad7dbdc1a037806.css","precedence":"next"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/aad7dbdc1a037806.css","precedence":"next"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
@@ -1,5 +1,5 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[91802,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"OutletBoundary"]
3
3
  3:"$Sreact.suspense"
4
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
5
5
  4:null
@@ -1,4 +1,4 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[58625,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
3
3
  3:I[24554,["/_next/static/chunks/01753452ac5baafa.js","/_next/static/chunks/581bc467369151d4.js"],"default"]
4
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,2 +1,2 @@
1
1
  :HL["/_next/static/chunks/aad7dbdc1a037806.css","style"]
2
- 0:{"buildId":"KkYBQ0zXX1U9zi1qJZ5zW","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
2
+ 0:{"buildId":"7bhvnDbT83Hnacec7beWN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}