@obsfx/trekker 0.1.5 → 0.1.7

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 (147) hide show
  1. package/README.md +175 -0
  2. package/package.json +1 -1
  3. package/webapp-dist/.next/BUILD_ID +1 -1
  4. package/webapp-dist/.next/build-manifest.json +2 -2
  5. package/webapp-dist/.next/prerender-manifest.json +3 -3
  6. package/webapp-dist/.next/server/app/_global-error.html +2 -2
  7. package/webapp-dist/.next/server/app/_global-error.rsc +1 -1
  8. package/webapp-dist/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  9. package/webapp-dist/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  10. package/webapp-dist/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  11. package/webapp-dist/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  12. package/webapp-dist/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  13. package/webapp-dist/.next/server/app/_not-found.html +2 -2
  14. package/webapp-dist/.next/server/app/_not-found.rsc +1 -1
  15. package/webapp-dist/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
  16. package/webapp-dist/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  17. package/webapp-dist/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
  18. package/webapp-dist/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  19. package/webapp-dist/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  20. package/webapp-dist/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
  21. package/webapp-dist/.next/server/app/index.html +2 -2
  22. package/webapp-dist/.next/server/app/index.rsc +1 -1
  23. package/webapp-dist/.next/server/app/index.segments/__PAGE__.segment.rsc +1 -1
  24. package/webapp-dist/.next/server/app/index.segments/_full.segment.rsc +1 -1
  25. package/webapp-dist/.next/server/app/index.segments/_head.segment.rsc +1 -1
  26. package/webapp-dist/.next/server/app/index.segments/_index.segment.rsc +1 -1
  27. package/webapp-dist/.next/server/app/index.segments/_tree.segment.rsc +1 -1
  28. package/webapp-dist/.next/server/pages/404.html +2 -2
  29. package/webapp-dist/.next/server/pages/500.html +2 -2
  30. package/webapp-dist/.next/server/server-reference-manifest.js +1 -1
  31. package/webapp-dist/.next/server/server-reference-manifest.json +1 -1
  32. package/webapp-dist/node_modules/@next/env/dist/index.js +1 -0
  33. package/webapp-dist/node_modules/@next/env/package.json +36 -0
  34. package/webapp-dist/node_modules/buffer-from/index.js +72 -0
  35. package/webapp-dist/node_modules/buffer-from/package.json +19 -0
  36. package/webapp-dist/node_modules/client-only/index.js +0 -0
  37. package/webapp-dist/node_modules/client-only/package.json +19 -0
  38. package/webapp-dist/node_modules/detect-libc/lib/detect-libc.js +313 -0
  39. package/webapp-dist/node_modules/detect-libc/lib/elf.js +39 -0
  40. package/webapp-dist/node_modules/detect-libc/lib/filesystem.js +51 -0
  41. package/webapp-dist/node_modules/detect-libc/lib/process.js +24 -0
  42. package/webapp-dist/node_modules/detect-libc/package.json +44 -0
  43. package/webapp-dist/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
  44. package/webapp-dist/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
  45. package/webapp-dist/node_modules/react/cjs/react.production.min.js +26 -0
  46. package/webapp-dist/node_modules/react/index.js +7 -0
  47. package/webapp-dist/node_modules/react/jsx-dev-runtime.js +7 -0
  48. package/webapp-dist/node_modules/react/jsx-runtime.js +7 -0
  49. package/webapp-dist/node_modules/react/package.json +47 -0
  50. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.min.js +93 -0
  51. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js +101 -0
  52. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js +96 -0
  53. package/webapp-dist/node_modules/react-dom/cjs/react-dom-server.node.production.min.js +102 -0
  54. package/webapp-dist/node_modules/react-dom/cjs/react-dom.production.min.js +322 -0
  55. package/webapp-dist/node_modules/react-dom/index.js +38 -0
  56. package/webapp-dist/node_modules/react-dom/package.json +62 -0
  57. package/webapp-dist/node_modules/react-dom/server.browser.js +17 -0
  58. package/webapp-dist/node_modules/react-dom/server.node.js +17 -0
  59. package/webapp-dist/node_modules/scheduler/cjs/scheduler.development.js +634 -0
  60. package/webapp-dist/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
  61. package/webapp-dist/node_modules/scheduler/index.js +7 -0
  62. package/webapp-dist/node_modules/scheduler/package.json +36 -0
  63. package/webapp-dist/node_modules/semver/classes/comparator.js +143 -0
  64. package/webapp-dist/node_modules/semver/classes/range.js +557 -0
  65. package/webapp-dist/node_modules/semver/classes/semver.js +333 -0
  66. package/webapp-dist/node_modules/semver/functions/cmp.js +54 -0
  67. package/webapp-dist/node_modules/semver/functions/coerce.js +62 -0
  68. package/webapp-dist/node_modules/semver/functions/compare.js +7 -0
  69. package/webapp-dist/node_modules/semver/functions/eq.js +5 -0
  70. package/webapp-dist/node_modules/semver/functions/gt.js +5 -0
  71. package/webapp-dist/node_modules/semver/functions/gte.js +5 -0
  72. package/webapp-dist/node_modules/semver/functions/lt.js +5 -0
  73. package/webapp-dist/node_modules/semver/functions/lte.js +5 -0
  74. package/webapp-dist/node_modules/semver/functions/neq.js +5 -0
  75. package/webapp-dist/node_modules/semver/functions/parse.js +18 -0
  76. package/webapp-dist/node_modules/semver/functions/satisfies.js +12 -0
  77. package/webapp-dist/node_modules/semver/internal/constants.js +37 -0
  78. package/webapp-dist/node_modules/semver/internal/debug.js +11 -0
  79. package/webapp-dist/node_modules/semver/internal/identifiers.js +29 -0
  80. package/webapp-dist/node_modules/semver/internal/lrucache.js +42 -0
  81. package/webapp-dist/node_modules/semver/internal/parse-options.js +17 -0
  82. package/webapp-dist/node_modules/semver/internal/re.js +223 -0
  83. package/webapp-dist/node_modules/semver/package.json +78 -0
  84. package/webapp-dist/node_modules/sharp/lib/channel.js +177 -0
  85. package/webapp-dist/node_modules/sharp/lib/colour.js +195 -0
  86. package/webapp-dist/node_modules/sharp/lib/composite.js +212 -0
  87. package/webapp-dist/node_modules/sharp/lib/constructor.js +499 -0
  88. package/webapp-dist/node_modules/sharp/lib/index.js +16 -0
  89. package/webapp-dist/node_modules/sharp/lib/input.js +809 -0
  90. package/webapp-dist/node_modules/sharp/lib/is.js +143 -0
  91. package/webapp-dist/node_modules/sharp/lib/libvips.js +207 -0
  92. package/webapp-dist/node_modules/sharp/lib/operation.js +1016 -0
  93. package/webapp-dist/node_modules/sharp/lib/output.js +1666 -0
  94. package/webapp-dist/node_modules/sharp/lib/resize.js +595 -0
  95. package/webapp-dist/node_modules/sharp/lib/sharp.js +121 -0
  96. package/webapp-dist/node_modules/sharp/lib/utility.js +291 -0
  97. package/webapp-dist/node_modules/sharp/package.json +202 -0
  98. package/webapp-dist/node_modules/source-map/lib/array-set.js +121 -0
  99. package/webapp-dist/node_modules/source-map/lib/base64-vlq.js +140 -0
  100. package/webapp-dist/node_modules/source-map/lib/base64.js +67 -0
  101. package/webapp-dist/node_modules/source-map/lib/binary-search.js +111 -0
  102. package/webapp-dist/node_modules/source-map/lib/mapping-list.js +79 -0
  103. package/webapp-dist/node_modules/source-map/lib/quick-sort.js +114 -0
  104. package/webapp-dist/node_modules/source-map/lib/source-map-consumer.js +1145 -0
  105. package/webapp-dist/node_modules/source-map/lib/source-map-generator.js +425 -0
  106. package/webapp-dist/node_modules/source-map/lib/source-node.js +413 -0
  107. package/webapp-dist/node_modules/source-map/lib/util.js +488 -0
  108. package/webapp-dist/node_modules/source-map/package.json +73 -0
  109. package/webapp-dist/node_modules/source-map/source-map.js +8 -0
  110. package/webapp-dist/node_modules/source-map-support/LICENSE.md +21 -0
  111. package/webapp-dist/node_modules/source-map-support/README.md +284 -0
  112. package/webapp-dist/node_modules/source-map-support/browser-source-map-support.js +114 -0
  113. package/webapp-dist/node_modules/source-map-support/package.json +31 -0
  114. package/webapp-dist/node_modules/source-map-support/register-hook-require.js +1 -0
  115. package/webapp-dist/node_modules/source-map-support/register.js +1 -0
  116. package/webapp-dist/node_modules/source-map-support/source-map-support.js +625 -0
  117. package/webapp-dist/node_modules/styled-jsx/dist/index/index.js +499 -0
  118. package/webapp-dist/node_modules/styled-jsx/index.js +1 -0
  119. package/webapp-dist/node_modules/styled-jsx/package.json +132 -0
  120. package/webapp-dist/node_modules/styled-jsx/style.js +1 -0
  121. package/webapp-dist/node_modules/typescript/lib/_tsc.js +133818 -0
  122. package/webapp-dist/node_modules/typescript/lib/_tsserver.js +659 -0
  123. package/webapp-dist/node_modules/typescript/lib/_typingsInstaller.js +222 -0
  124. package/webapp-dist/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
  125. package/webapp-dist/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
  126. package/webapp-dist/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
  127. package/webapp-dist/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
  128. package/webapp-dist/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
  129. package/webapp-dist/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
  130. package/webapp-dist/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
  131. package/webapp-dist/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
  132. package/webapp-dist/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
  133. package/webapp-dist/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
  134. package/webapp-dist/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
  135. package/webapp-dist/node_modules/typescript/lib/tsc.js +8 -0
  136. package/webapp-dist/node_modules/typescript/lib/tsserver.js +8 -0
  137. package/webapp-dist/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  138. package/webapp-dist/node_modules/typescript/lib/typesMap.json +497 -0
  139. package/webapp-dist/node_modules/typescript/lib/typescript.js +200276 -0
  140. package/webapp-dist/node_modules/typescript/lib/typingsInstaller.js +8 -0
  141. package/webapp-dist/node_modules/typescript/lib/watchGuard.js +53 -0
  142. package/webapp-dist/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
  143. package/webapp-dist/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
  144. package/webapp-dist/node_modules/typescript/package.json +120 -0
  145. /package/webapp-dist/.next/static/{sziMhYzomTi_mBUq2dVcq → 6d9vQZJNWnbBaVrpBo9kx}/_buildManifest.js +0 -0
  146. /package/webapp-dist/.next/static/{sziMhYzomTi_mBUq2dVcq → 6d9vQZJNWnbBaVrpBo9kx}/_clientMiddlewareManifest.json +0 -0
  147. /package/webapp-dist/.next/static/{sziMhYzomTi_mBUq2dVcq → 6d9vQZJNWnbBaVrpBo9kx}/_ssgManifest.js +0 -0
package/README.md ADDED
@@ -0,0 +1,175 @@
1
+ # Trekker
2
+
3
+ A CLI issue tracker built for AI coding agents. Stores tasks, epics, and dependencies in a local SQLite database with a built-in kanban board. No server required.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ bun install -g @obsfx/trekker
9
+ ```
10
+
11
+ Or with npm:
12
+
13
+ ```bash
14
+ npm install -g @obsfx/trekker
15
+ ```
16
+
17
+ ## Why Trekker
18
+
19
+ AI coding agents work better when they can track their own progress. A simple CLI-based task manager keeps them on the right path across sessions.
20
+
21
+ I built this after using beads for a while. Beads does the job, but its codebase has grown quickly without enough care for what is happening inside. A task tracker is a simple application. It should not need thousands of lines of code.
22
+
23
+ My concerns about the future and security of that project led me here. Trekker is my simplified alternative.
24
+
25
+ What you get:
26
+ - Task and epic tracking with dependencies
27
+ - Built-in kanban board UI with real-time updates
28
+ - No special directory required. The .trekker folder stays local to your project.
29
+ - No hook integrations. Just task management.
30
+
31
+ I built this with AI assistance, but I did it for myself. That means I put enough care into it to make it reliable for my own work.
32
+
33
+ ## Quick Start
34
+
35
+ Initialize Trekker in your project:
36
+
37
+ ```bash
38
+ trekker init
39
+ ```
40
+
41
+ Create an epic for your feature:
42
+
43
+ ```bash
44
+ trekker epic create -t "User Authentication" -d "JWT-based auth with login and registration"
45
+ ```
46
+
47
+ Add tasks to the epic:
48
+
49
+ ```bash
50
+ trekker task create -t "Create user model" -e EPIC-1
51
+ trekker task create -t "Build login endpoint" -e EPIC-1
52
+ trekker task create -t "Build registration endpoint" -e EPIC-1
53
+ ```
54
+
55
+ Set dependencies between tasks:
56
+
57
+ ```bash
58
+ trekker dep add TREK-2 TREK-1
59
+ trekker dep add TREK-3 TREK-1
60
+ ```
61
+
62
+ Update task status as you work:
63
+
64
+ ```bash
65
+ trekker task update TREK-1 -s in_progress
66
+ trekker task update TREK-1 -s completed
67
+ ```
68
+
69
+ ## Commands
70
+
71
+ ### Project
72
+
73
+ ```bash
74
+ trekker init # Initialize in current directory
75
+ trekker wipe # Delete all data
76
+ trekker quickstart # Show full documentation
77
+ ```
78
+
79
+ ### Epics
80
+
81
+ ```bash
82
+ trekker epic create -t <title> [-d <desc>] [-p <0-5>] [-s <status>]
83
+ trekker epic list [--status <status>]
84
+ trekker epic show <epic-id>
85
+ trekker epic update <epic-id> [options]
86
+ trekker epic delete <epic-id>
87
+ ```
88
+
89
+ ### Tasks
90
+
91
+ ```bash
92
+ trekker task create -t <title> [-d <desc>] [-p <0-5>] [-s <status>] [--tags <tags>] [-e <epic-id>]
93
+ trekker task list [--status <status>] [--epic <epic-id>]
94
+ trekker task show <task-id>
95
+ trekker task update <task-id> [options]
96
+ trekker task delete <task-id>
97
+ ```
98
+
99
+ ### Subtasks
100
+
101
+ ```bash
102
+ trekker subtask create <parent-id> -t <title> [-d <desc>] [-p <0-5>] [-s <status>]
103
+ trekker subtask list <parent-id>
104
+ trekker subtask update <subtask-id> [options]
105
+ trekker subtask delete <subtask-id>
106
+ ```
107
+
108
+ ### Comments
109
+
110
+ ```bash
111
+ trekker comment add <task-id> -a <author> -c <content>
112
+ trekker comment list <task-id>
113
+ trekker comment update <comment-id> -c <content>
114
+ trekker comment delete <comment-id>
115
+ ```
116
+
117
+ ### Dependencies
118
+
119
+ ```bash
120
+ trekker dep add <task-id> <depends-on-id>
121
+ trekker dep remove <task-id> <depends-on-id>
122
+ trekker dep list <task-id>
123
+ ```
124
+
125
+ ### Web Interface
126
+
127
+ ```bash
128
+ trekker serve # Start production server on port 3000
129
+ trekker serve -p 8080 # Start on custom port
130
+ trekker serve --dev # Start development server
131
+ ```
132
+
133
+ The web interface shows a kanban board with tasks grouped by status. It reads from the same database as the CLI and updates in real time. The first run builds the webapp. Subsequent runs start instantly.
134
+
135
+ ## JSON Output
136
+
137
+ Add the `--json` flag to any command for structured output:
138
+
139
+ ```bash
140
+ trekker --json task list
141
+ trekker --json task show TREK-1
142
+ ```
143
+
144
+ ## Status Values
145
+
146
+ Tasks: `todo`, `in_progress`, `completed`, `wont_fix`, `archived`
147
+
148
+ Epics: `todo`, `in_progress`, `completed`, `archived`
149
+
150
+ ## Priority Scale
151
+
152
+ - 0: Critical
153
+ - 1: High
154
+ - 2: Medium (default)
155
+ - 3: Low
156
+ - 4: Backlog
157
+ - 5: Someday
158
+
159
+ ## ID Formats
160
+
161
+ - Epics: `EPIC-1`, `EPIC-2`
162
+ - Tasks: `TREK-1`, `TREK-2`
163
+ - Comments: `CMT-1`, `CMT-2`
164
+
165
+ ## Data Storage
166
+
167
+ Trekker creates a `.trekker` directory in your project root containing `trekker.db`. Add `.trekker` to your `.gitignore` if you do not want to track it in version control.
168
+
169
+ ## For AI Agents
170
+
171
+ Run `trekker quickstart` to see the full guide with best practices for creating atomic tasks, writing good descriptions, and managing dependencies.
172
+
173
+ ## License
174
+
175
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obsfx/trekker",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "A CLI-based issue tracker built for AI coding agents. Stores tasks, epics, and dependencies in a local SQLite database with a built-in kanban board UI.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1 +1 @@
1
- sziMhYzomTi_mBUq2dVcq
1
+ 6d9vQZJNWnbBaVrpBo9kx
@@ -7,8 +7,8 @@
7
7
  "static/chunks/a6dad97d9634a72d.js"
8
8
  ],
9
9
  "lowPriorityFiles": [
10
- "static/sziMhYzomTi_mBUq2dVcq/_ssgManifest.js",
11
- "static/sziMhYzomTi_mBUq2dVcq/_buildManifest.js"
10
+ "static/6d9vQZJNWnbBaVrpBo9kx/_ssgManifest.js",
11
+ "static/6d9vQZJNWnbBaVrpBo9kx/_buildManifest.js"
12
12
  ],
13
13
  "rootMainFiles": [
14
14
  "static/chunks/5e0be427f68f6080.js",
@@ -78,8 +78,8 @@
78
78
  "dynamicRoutes": {},
79
79
  "notFoundRoutes": [],
80
80
  "preview": {
81
- "previewModeId": "0f00c915c2d39d3e7679c6d072b82b58",
82
- "previewModeSigningKey": "ff2ba009e18d0c04a2c5bef871471d931a2d7097ae29ad5323e34dbfc4d8d0b0",
83
- "previewModeEncryptionKey": "32a2997505295807940fe43fd210123c96151b0a4661894dca8ba250015bd832"
81
+ "previewModeId": "8fa897cc1416b8e269b2f210ca73b058",
82
+ "previewModeSigningKey": "684408f97ec24910354d19e8f02575fc8a1e910af5b03fa94ff64e38c2d468b8",
83
+ "previewModeEncryptionKey": "8e82aff56c023e6153557dd66bc7175b2136e7a36ba0381762498cb1a2fc62e3"
84
84
  }
85
85
  }
@@ -1,2 +1,2 @@
1
- <!DOCTYPE html><!--sziMhYzomTi_mBUq2dVcq--><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/5e0be427f68f6080.js"/><script src="/_next/static/chunks/3036933cb9bf38e3.js" async=""></script><script src="/_next/static/chunks/c1589cab6fb15b0d.js" async=""></script><script src="/_next/static/chunks/turbopack-d39d36eb8f918d5a.js" async=""></script><script src="/_next/static/chunks/6aa9c115948055d1.js" async=""></script><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/5e0be427f68f6080.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[30305,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n3:I[87501,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n4:I[28614,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[28614,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"ViewportBoundary\"]\n9:I[28614,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"MetadataBoundary\"]\nb:I[68334,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"sziMhYzomTi_mBUq2dVcq\",\"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/6aa9c115948055d1.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\"}]}]}],null]}],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><!--6d9vQZJNWnbBaVrpBo9kx--><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/5e0be427f68f6080.js"/><script src="/_next/static/chunks/3036933cb9bf38e3.js" async=""></script><script src="/_next/static/chunks/c1589cab6fb15b0d.js" async=""></script><script src="/_next/static/chunks/turbopack-d39d36eb8f918d5a.js" async=""></script><script src="/_next/static/chunks/6aa9c115948055d1.js" async=""></script><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/5e0be427f68f6080.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[30305,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n3:I[87501,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n4:I[28614,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[28614,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"ViewportBoundary\"]\n9:I[28614,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"MetadataBoundary\"]\nb:I[68334,[\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"6d9vQZJNWnbBaVrpBo9kx\",\"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/6aa9c115948055d1.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\"}]}]}],null]}],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[28614,["/_next/static/chunks/6aa9c115948055d1.js"],"ViewportBoundary"]
7
7
  9:I[28614,["/_next/static/chunks/6aa9c115948055d1.js"],"MetadataBoundary"]
8
8
  b:I[68334,["/_next/static/chunks/6aa9c115948055d1.js"],"default"]
9
- 0:{"P":null,"b":"sziMhYzomTi_mBUq2dVcq","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/6aa9c115948055d1.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"}]}]}],null]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
9
+ 0:{"P":null,"b":"6d9vQZJNWnbBaVrpBo9kx","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/6aa9c115948055d1.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"}]}]}],null]}],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[28614,["/_next/static/chunks/6aa9c115948055d1.js"],"OutletBoundary"]
3
3
  3:"$Sreact.suspense"
4
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","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/6aa9c115948055d1.js","async":true}]],["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"6d9vQZJNWnbBaVrpBo9kx","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/6aa9c115948055d1.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[28614,["/_next/static/chunks/6aa9c115948055d1.js"],"ViewportBoundary"]
7
7
  9:I[28614,["/_next/static/chunks/6aa9c115948055d1.js"],"MetadataBoundary"]
8
8
  b:I[68334,["/_next/static/chunks/6aa9c115948055d1.js"],"default"]
9
- 0:{"P":null,"b":"sziMhYzomTi_mBUq2dVcq","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/6aa9c115948055d1.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"}]}]}],null]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
9
+ 0:{"P":null,"b":"6d9vQZJNWnbBaVrpBo9kx","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/6aa9c115948055d1.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"}]}]}],null]}],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[28614,["/_next/static/chunks/6aa9c115948055d1.js"],"ViewportBoundary"]
3
3
  3:I[28614,["/_next/static/chunks/6aa9c115948055d1.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","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":[]}]}]}],null]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"6d9vQZJNWnbBaVrpBo9kx","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":[]}]}]}],null]}],"loading":null,"isPartial":false}
@@ -1,4 +1,4 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[30305,["/_next/static/chunks/6aa9c115948055d1.js"],"default"]
3
3
  3:I[87501,["/_next/static/chunks/6aa9c115948055d1.js"],"default"]
4
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"6d9vQZJNWnbBaVrpBo9kx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1 +1 @@
1
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","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":"6d9vQZJNWnbBaVrpBo9kx","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,4 +1,4 @@
1
- <!DOCTYPE html><!--sziMhYzomTi_mBUq2dVcq--><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/a3a48138431e69f2.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/5e0be427f68f6080.js"/><script src="/_next/static/chunks/3036933cb9bf38e3.js" async=""></script><script src="/_next/static/chunks/c1589cab6fb15b0d.js" async=""></script><script src="/_next/static/chunks/turbopack-d39d36eb8f918d5a.js" async=""></script><script src="/_next/static/chunks/f87dc668b9e005e0.js" async=""></script><script src="/_next/static/chunks/de03c42fd52463c2.js" async=""></script><script src="/_next/static/chunks/6aa9c115948055d1.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Trekker</title><meta name="description" content="Issue tracker for AI coding agents"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="min-h-screen bg-background font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><script>((a, b, c, d, e, f, g, h) => {
1
+ <!DOCTYPE html><!--6d9vQZJNWnbBaVrpBo9kx--><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/a3a48138431e69f2.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/5e0be427f68f6080.js"/><script src="/_next/static/chunks/3036933cb9bf38e3.js" async=""></script><script src="/_next/static/chunks/c1589cab6fb15b0d.js" async=""></script><script src="/_next/static/chunks/turbopack-d39d36eb8f918d5a.js" async=""></script><script src="/_next/static/chunks/f87dc668b9e005e0.js" async=""></script><script src="/_next/static/chunks/de03c42fd52463c2.js" async=""></script><script src="/_next/static/chunks/6aa9c115948055d1.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Trekker</title><meta name="description" content="Issue tracker for AI coding agents"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="min-h-screen bg-background font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><script>((a, b, c, d, e, f, g, h) => {
2
2
  let i = document.documentElement, j = ["light", "dark"];
3
3
  function k(b) {
4
4
  var c;
@@ -14,4 +14,4 @@
14
14
  let a = localStorage.getItem(b) || c, d = g && a === "system" ? window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light" : a;
15
15
  k(d);
16
16
  } catch (a) {}
17
- })("class","theme","system",null,["light","dark"],null,true,true)</script><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/5e0be427f68f6080.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[30666,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"Providers\"]\n3:I[30305,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n4:I[87501,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n5:I[28614,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"OutletBoundary\"]\n6:\"$Sreact.suspense\"\n8:I[28614,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"ViewportBoundary\"]\na:I[28614,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"MetadataBoundary\"]\nc:I[68334,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n:HL[\"/_next/static/chunks/a3a48138431e69f2.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"sziMhYzomTi_mBUq2dVcq\",\"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/a3a48138431e69f2.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/f87dc668b9e005e0.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/de03c42fd52463c2.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/6aa9c115948055d1.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"min-h-screen bg-background font-sans 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\"}]}]}]}]]}],{\"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\":\"$0:f:0:1:0:props:children:1:props:children: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: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: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:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@7\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"7:null\nb:[[\"$\",\"title\",\"0\",{\"children\":\"Trekker\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Issue tracker for AI coding agents\"}]]\n"])</script></body></html>
17
+ })("class","theme","system",null,["light","dark"],null,true,true)</script><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/5e0be427f68f6080.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[30666,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"Providers\"]\n3:I[30305,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n4:I[87501,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n5:I[28614,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"OutletBoundary\"]\n6:\"$Sreact.suspense\"\n8:I[28614,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"ViewportBoundary\"]\na:I[28614,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"MetadataBoundary\"]\nc:I[68334,[\"/_next/static/chunks/f87dc668b9e005e0.js\",\"/_next/static/chunks/de03c42fd52463c2.js\",\"/_next/static/chunks/6aa9c115948055d1.js\"],\"default\"]\n:HL[\"/_next/static/chunks/a3a48138431e69f2.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"6d9vQZJNWnbBaVrpBo9kx\",\"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/a3a48138431e69f2.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/f87dc668b9e005e0.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/de03c42fd52463c2.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/6aa9c115948055d1.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"min-h-screen bg-background font-sans 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\"}]}]}]}]]}],{\"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\":\"$0:f:0:1:0:props:children:1:props:children: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: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: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:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@7\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"7:null\nb:[[\"$\",\"title\",\"0\",{\"children\":\"Trekker\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Issue tracker for AI coding agents\"}]]\n"])</script></body></html>
@@ -8,7 +8,7 @@
8
8
  a:I[28614,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"MetadataBoundary"]
9
9
  c:I[68334,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"default"]
10
10
  :HL["/_next/static/chunks/a3a48138431e69f2.css","style"]
11
- 0:{"P":null,"b":"sziMhYzomTi_mBUq2dVcq","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/a3a48138431e69f2.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f87dc668b9e005e0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/de03c42fd52463c2.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/6aa9c115948055d1.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"min-h-screen bg-background font-sans 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"}]}]}]}]]}],{"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":"$0:f:0:1:0:props:children:1:props:children: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: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: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:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c","$undefined"],"S":true}
11
+ 0:{"P":null,"b":"6d9vQZJNWnbBaVrpBo9kx","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/a3a48138431e69f2.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f87dc668b9e005e0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/de03c42fd52463c2.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/6aa9c115948055d1.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"min-h-screen bg-background font-sans 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"}]}]}]}]]}],{"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":"$0:f:0:1:0:props:children:1:props:children: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: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: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:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c","$undefined"],"S":true}
12
12
  9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
13
13
  7:null
14
14
  b:[["$","title","0",{"children":"Trekker"}],["$","meta","1",{"name":"description","content":"Issue tracker for AI coding agents"}]]
@@ -8,7 +8,7 @@
8
8
  a:I[28614,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"MetadataBoundary"]
9
9
  c:I[68334,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"default"]
10
10
  :HL["/_next/static/chunks/a3a48138431e69f2.css","style"]
11
- 0:{"P":null,"b":"sziMhYzomTi_mBUq2dVcq","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/a3a48138431e69f2.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f87dc668b9e005e0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/de03c42fd52463c2.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/6aa9c115948055d1.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"min-h-screen bg-background font-sans 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"}]}]}]}]]}],{"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":"$0:f:0:1:0:props:children:1:props:children: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: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: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:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c","$undefined"],"S":true}
11
+ 0:{"P":null,"b":"6d9vQZJNWnbBaVrpBo9kx","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/a3a48138431e69f2.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f87dc668b9e005e0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/de03c42fd52463c2.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/6aa9c115948055d1.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"min-h-screen bg-background font-sans 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"}]}]}]}]]}],{"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":"$0:f:0:1:0:props:children:1:props:children: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: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: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:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c","$undefined"],"S":true}
12
12
  9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
13
13
  7:null
14
14
  b:[["$","title","0",{"children":"Trekker"}],["$","meta","1",{"name":"description","content":"Issue tracker for AI coding agents"}]]
@@ -2,4 +2,4 @@
2
2
  2:I[28614,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"ViewportBoundary"]
3
3
  3:I[28614,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","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":"Trekker"}],["$","meta","1",{"name":"description","content":"Issue tracker for AI coding agents"}]]}]}]}],null]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"6d9vQZJNWnbBaVrpBo9kx","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":"Trekker"}],["$","meta","1",{"name":"description","content":"Issue tracker for AI coding agents"}]]}]}]}],null]}],"loading":null,"isPartial":false}
@@ -3,4 +3,4 @@
3
3
  3:I[30305,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"default"]
4
4
  4:I[87501,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"default"]
5
5
  :HL["/_next/static/chunks/a3a48138431e69f2.css","style"]
6
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/a3a48138431e69f2.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/f87dc668b9e005e0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/de03c42fd52463c2.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/6aa9c115948055d1.js","async":true}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"min-h-screen bg-background font-sans 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."}]}]]}]}]],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"6d9vQZJNWnbBaVrpBo9kx","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/a3a48138431e69f2.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/f87dc668b9e005e0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/de03c42fd52463c2.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/6aa9c115948055d1.js","async":true}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"min-h-screen bg-background font-sans 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."}]}]]}]}]],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
@@ -1,5 +1,5 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[28614,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"OutletBoundary"]
3
3
  3:"$Sreact.suspense"
4
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","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":"6d9vQZJNWnbBaVrpBo9kx","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[30305,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"default"]
3
3
  3:I[87501,["/_next/static/chunks/f87dc668b9e005e0.js","/_next/static/chunks/de03c42fd52463c2.js","/_next/static/chunks/6aa9c115948055d1.js"],"default"]
4
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"6d9vQZJNWnbBaVrpBo9kx","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/a3a48138431e69f2.css","style"]
2
- 0:{"buildId":"sziMhYzomTi_mBUq2dVcq","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":"6d9vQZJNWnbBaVrpBo9kx","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}