@hemangdoshi/devdeck 1.2.0

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 (54) hide show
  1. package/dist/agent-client.d.ts +32 -0
  2. package/dist/commands/agent.d.ts +2 -0
  3. package/dist/commands/dev.d.ts +9 -0
  4. package/dist/commands/init.d.ts +10 -0
  5. package/dist/commands/session.d.ts +10 -0
  6. package/dist/commands/start.d.ts +7 -0
  7. package/dist/dashboard/404.html +1 -0
  8. package/dist/dashboard/__next.__PAGE__.txt +6 -0
  9. package/dist/dashboard/__next._full.txt +17 -0
  10. package/dist/dashboard/__next._head.txt +5 -0
  11. package/dist/dashboard/__next._index.txt +7 -0
  12. package/dist/dashboard/__next._tree.txt +3 -0
  13. package/dist/dashboard/_next/static/RB8s1jjgiLhjvp2HZDBhU/_buildManifest.js +1 -0
  14. package/dist/dashboard/_next/static/RB8s1jjgiLhjvp2HZDBhU/_ssgManifest.js +1 -0
  15. package/dist/dashboard/_next/static/chunks/101-70b226b829c9d4ae.js +1 -0
  16. package/dist/dashboard/_next/static/chunks/444-19cc275570eb4ec1.js +9 -0
  17. package/dist/dashboard/_next/static/chunks/87c73c54-f46fec743414da25.js +1 -0
  18. package/dist/dashboard/_next/static/chunks/968-8927f96477f316db.js +32 -0
  19. package/dist/dashboard/_next/static/chunks/app/_global-error/page-327b769f8d5a8082.js +1 -0
  20. package/dist/dashboard/_next/static/chunks/app/_not-found/page-528149ca15426794.js +1 -0
  21. package/dist/dashboard/_next/static/chunks/app/layout-970af65dc7518514.js +1 -0
  22. package/dist/dashboard/_next/static/chunks/app/page-8d1a7ef25da4dec8.js +6 -0
  23. package/dist/dashboard/_next/static/chunks/framework-f714a6dbe5864bc1.js +1 -0
  24. package/dist/dashboard/_next/static/chunks/main-26a54062acfda087.js +5 -0
  25. package/dist/dashboard/_next/static/chunks/main-app-3d143a4f086bb1fb.js +1 -0
  26. package/dist/dashboard/_next/static/chunks/next/dist/client/components/builtin/app-error-327b769f8d5a8082.js +1 -0
  27. package/dist/dashboard/_next/static/chunks/next/dist/client/components/builtin/forbidden-327b769f8d5a8082.js +1 -0
  28. package/dist/dashboard/_next/static/chunks/next/dist/client/components/builtin/global-error-279c886853324bb0.js +1 -0
  29. package/dist/dashboard/_next/static/chunks/next/dist/client/components/builtin/not-found-327b769f8d5a8082.js +1 -0
  30. package/dist/dashboard/_next/static/chunks/next/dist/client/components/builtin/unauthorized-327b769f8d5a8082.js +1 -0
  31. package/dist/dashboard/_next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
  32. package/dist/dashboard/_next/static/chunks/webpack-c708016a143f497e.js +1 -0
  33. package/dist/dashboard/_next/static/css/5379a39d263cf11e.css +1 -0
  34. package/dist/dashboard/_next/static/media/22a5144ee8d83bca-s.p.woff2 +0 -0
  35. package/dist/dashboard/_next/static/media/9766a7e9e2e0ad5a-s.woff2 +0 -0
  36. package/dist/dashboard/_next/static/media/aa016aab0e6d1295-s.woff2 +0 -0
  37. package/dist/dashboard/_next/static/media/b66cf8e69499582a-s.woff2 +0 -0
  38. package/dist/dashboard/_next/static/media/f639721981034f88-s.woff2 +0 -0
  39. package/dist/dashboard/_not-found/__next._full.txt +18 -0
  40. package/dist/dashboard/_not-found/__next._head.txt +5 -0
  41. package/dist/dashboard/_not-found/__next._index.txt +7 -0
  42. package/dist/dashboard/_not-found/__next._not-found.__PAGE__.txt +5 -0
  43. package/dist/dashboard/_not-found/__next._not-found.txt +5 -0
  44. package/dist/dashboard/_not-found/__next._tree.txt +3 -0
  45. package/dist/dashboard/_not-found.html +1 -0
  46. package/dist/dashboard/_not-found.txt +18 -0
  47. package/dist/dashboard/index.html +1 -0
  48. package/dist/dashboard/index.txt +17 -0
  49. package/dist/dashboard/static/index.html +43 -0
  50. package/dist/format-agent-output.d.ts +5 -0
  51. package/dist/index.d.ts +8 -0
  52. package/dist/index.js +45 -0
  53. package/dist/session-state.d.ts +21 -0
  54. package/package.json +25 -0
@@ -0,0 +1,32 @@
1
+ import type { LogSeverity, SessionSnapshot } from "@devdeck/core";
2
+ export type AgentClientOptions = {
3
+ cwd?: string;
4
+ fetchImplementation?: typeof fetch;
5
+ url?: string;
6
+ };
7
+ export type AgentLogsResponse = {
8
+ project: string;
9
+ filters: {
10
+ service?: string;
11
+ severity?: LogSeverity;
12
+ grep?: string;
13
+ tail: number;
14
+ };
15
+ totalMatched: number;
16
+ returned: number;
17
+ logs: SessionSnapshot["logs"];
18
+ };
19
+ export declare function getSnapshot(options?: AgentClientOptions): Promise<SessionSnapshot>;
20
+ export declare function getLogs(filters: {
21
+ service?: string;
22
+ tail?: number;
23
+ severity?: LogSeverity;
24
+ grep?: string;
25
+ }, options?: AgentClientOptions): Promise<AgentLogsResponse>;
26
+ export declare function postAction(body: {
27
+ action: "start" | "stop" | "restart" | "stop-session";
28
+ serviceName?: string;
29
+ }, options?: AgentClientOptions): Promise<{
30
+ ok: boolean;
31
+ error?: string;
32
+ }>;
@@ -0,0 +1,2 @@
1
+ import type { CommandIo } from "./init.js";
2
+ export declare function runAgentCommand(args: string[], io?: CommandIo): Promise<void>;
@@ -0,0 +1,9 @@
1
+ import type { CommandIo } from "./init.js";
2
+ export type DevCommandOptions = {
3
+ cwd?: string;
4
+ io?: CommandIo;
5
+ holdUntilSignal?: boolean;
6
+ port?: number;
7
+ onServerStarted?: () => Promise<void>;
8
+ };
9
+ export declare function runDevCommand(options?: DevCommandOptions): Promise<void>;
@@ -0,0 +1,10 @@
1
+ export type CommandIo = {
2
+ stdout: (message: string) => void;
3
+ stderr: (message: string) => void;
4
+ };
5
+ export type InitCommandOptions = {
6
+ cwd?: string;
7
+ io?: CommandIo;
8
+ };
9
+ export declare function runInitCommand(options?: InitCommandOptions): Promise<void>;
10
+ export declare function createStarterConfig(): string;
@@ -0,0 +1,10 @@
1
+ import { type AgentClientOptions } from "../agent-client.js";
2
+ import type { CommandIo } from "./init.js";
3
+ export type SessionCommandOptions = AgentClientOptions & {
4
+ io?: CommandIo;
5
+ };
6
+ export declare function runStatusCommand(args: string[], options?: SessionCommandOptions): Promise<void>;
7
+ export declare function runLogsCommand(args: string[], options?: SessionCommandOptions): Promise<void>;
8
+ export declare function runSnapshotCommand(args: string[], options?: SessionCommandOptions): Promise<void>;
9
+ export declare function runStopCommand(args: string[], options?: SessionCommandOptions): Promise<void>;
10
+ export declare function runServiceCommand(args: string[], options?: SessionCommandOptions): Promise<void>;
@@ -0,0 +1,7 @@
1
+ import type { CommandIo } from "./init.js";
2
+ export type StartCommandOptions = {
3
+ cwd?: string;
4
+ io?: CommandIo;
5
+ port?: number;
6
+ };
7
+ export declare function runStartCommand(options?: StartCommandOptions): Promise<void>;
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" class="font-sans __variable_246ccd"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/22a5144ee8d83bca-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/5379a39d263cf11e.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-c708016a143f497e.js"/><script src="/_next/static/chunks/87c73c54-f46fec743414da25.js" async=""></script><script src="/_next/static/chunks/968-8927f96477f316db.js" async=""></script><script src="/_next/static/chunks/main-app-3d143a4f086bb1fb.js" async=""></script><script src="/_next/static/chunks/101-70b226b829c9d4ae.js" async=""></script><script src="/_next/static/chunks/app/layout-970af65dc7518514.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>DevDeck</title><meta name="description" content="Local-first developer session dashboard"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="min-h-screen 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><!--$--><!--/$--><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-c708016a143f497e.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[4757,[\"101\",\"static/chunks/101-70b226b829c9d4ae.js\",\"177\",\"static/chunks/app/layout-970af65dc7518514.js\"],\"TooltipProvider\"]\n3:I[9630,[],\"\"]\n4:I[1380,[],\"\"]\n5:I[2437,[\"101\",\"static/chunks/101-70b226b829c9d4ae.js\",\"177\",\"static/chunks/app/layout-970af65dc7518514.js\"],\"Toaster\"]\n6:I[887,[],\"OutletBoundary\"]\n7:\"$Sreact.suspense\"\na:I[887,[],\"ViewportBoundary\"]\nc:I[887,[],\"MetadataBoundary\"]\ne:I[5718,[],\"default\",1]\n:HL[\"/_next/static/media/22a5144ee8d83bca-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/5379a39d263cf11e.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/5379a39d263cf11e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"font-sans __variable_246ccd\",\"children\":[\"$\",\"body\",null,{\"className\":\"min-h-screen antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L5\",null,{\"position\":\"top-right\",\"richColors\":true}]]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",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\":{\"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,[\"$\",\"$L6\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,null]},null,false,\"$@9\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$La\",null,{\"children\":\"$Lb\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lc\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Ld\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"RB8s1jjgiLhjvp2HZDBhU\"}\n"])</script><script>self.__next_f.push([1,"f:[]\n9:\"$Wf\"\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"8:null\nd:[[\"$\",\"title\",\"0\",{\"children\":\"DevDeck\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Local-first developer session dashboard\"}]]\n"])</script></body></html>
@@ -0,0 +1,6 @@
1
+ 1:"$Sreact.fragment"
2
+ 2:I[4236,["101","static/chunks/101-70b226b829c9d4ae.js","444","static/chunks/444-19cc275570eb4ec1.js","974","static/chunks/app/page-8d1a7ef25da4dec8.js"],"DashboardShell"]
3
+ 3:I[887,[],"OutletBoundary"]
4
+ 4:"$Sreact.suspense"
5
+ 0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{}],null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"RB8s1jjgiLhjvp2HZDBhU"}
6
+ 5:null
@@ -0,0 +1,17 @@
1
+ 1:"$Sreact.fragment"
2
+ 2:I[4757,["101","static/chunks/101-70b226b829c9d4ae.js","177","static/chunks/app/layout-970af65dc7518514.js"],"TooltipProvider"]
3
+ 3:I[9630,[],""]
4
+ 4:I[1380,[],""]
5
+ 5:I[2437,["101","static/chunks/101-70b226b829c9d4ae.js","177","static/chunks/app/layout-970af65dc7518514.js"],"Toaster"]
6
+ 6:I[4236,["101","static/chunks/101-70b226b829c9d4ae.js","444","static/chunks/444-19cc275570eb4ec1.js","974","static/chunks/app/page-8d1a7ef25da4dec8.js"],"DashboardShell"]
7
+ 7:I[887,[],"OutletBoundary"]
8
+ 8:"$Sreact.suspense"
9
+ a:I[887,[],"ViewportBoundary"]
10
+ c:I[887,[],"MetadataBoundary"]
11
+ e:I[5718,[],"default",1]
12
+ :HL["/_next/static/media/22a5144ee8d83bca-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
13
+ :HL["/_next/static/css/5379a39d263cf11e.css","style"]
14
+ 0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/5379a39d263cf11e.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"font-sans __variable_246ccd","children":["$","body",null,{"className":"min-h-screen antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",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"}],["$","$L5",null,{"position":"top-right","richColors":true}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{}],null,["$","$L7",null,{"children":["$","$8",null,{"name":"Next.MetadataOutlet","children":"$@9"}]}]]}],{},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$La",null,{"children":"$Lb"}],["$","div",null,{"hidden":true,"children":["$","$Lc",null,{"children":["$","$8",null,{"name":"Next.Metadata","children":"$Ld"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$e",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"RB8s1jjgiLhjvp2HZDBhU"}
15
+ b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
16
+ 9:null
17
+ d:[["$","title","0",{"children":"DevDeck"}],["$","meta","1",{"name":"description","content":"Local-first developer session dashboard"}]]
@@ -0,0 +1,5 @@
1
+ 1:"$Sreact.fragment"
2
+ 2:I[887,[],"ViewportBoundary"]
3
+ 3:I[887,[],"MetadataBoundary"]
4
+ 4:"$Sreact.suspense"
5
+ 0:{"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":[["$","title","0",{"children":"DevDeck"}],["$","meta","1",{"name":"description","content":"Local-first developer session dashboard"}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"RB8s1jjgiLhjvp2HZDBhU"}
@@ -0,0 +1,7 @@
1
+ 1:"$Sreact.fragment"
2
+ 2:I[4757,["101","static/chunks/101-70b226b829c9d4ae.js","177","static/chunks/app/layout-970af65dc7518514.js"],"TooltipProvider"]
3
+ 3:I[9630,[],""]
4
+ 4:I[1380,[],""]
5
+ 5:I[2437,["101","static/chunks/101-70b226b829c9d4ae.js","177","static/chunks/app/layout-970af65dc7518514.js"],"Toaster"]
6
+ :HL["/_next/static/css/5379a39d263cf11e.css","style"]
7
+ 0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/5379a39d263cf11e.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"font-sans __variable_246ccd","children":["$","body",null,{"className":"min-h-screen antialiased","children":["$","$L2",null,{"children":[["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",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."}]}]]}]}]],[]]}],["$","$L5",null,{"position":"top-right","richColors":true}]]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"RB8s1jjgiLhjvp2HZDBhU"}
@@ -0,0 +1,3 @@
1
+ :HL["/_next/static/media/22a5144ee8d83bca-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
2
+ :HL["/_next/static/css/5379a39d263cf11e.css","style"]
3
+ 0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"RB8s1jjgiLhjvp2HZDBhU"}
@@ -0,0 +1 @@
1
+ self.__BUILD_MANIFEST={__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},__routerFilterStatic:{numItems:3,errorRate:1e-4,numBits:58,numHashes:14,bitArray:[1,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,0,1,1,0,0,0,1,0,0,0,0,0,1,0,1,1,1,1,0,1,1,0,1,1,0,1,1,0,1,0,0,1,1,1,0,0,1,1,0,0,1,1]},__routerFilterDynamic:{numItems:0,errorRate:1e-4,numBits:0,numHashes:null,bitArray:[]},sortedPages:["/_app"]},self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
@@ -0,0 +1 @@
1
+ self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()