CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
app.tsx
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 79136bb | 1 | import { Hono } from "hono"; |
| 2 | import { logger } from "hono/logger"; | |
| 3 | import { cors } from "hono/cors"; | |
| 05b973e | 4 | import { compress } from "hono/compress"; |
| 79136bb | 5 | import { Layout } from "./views/layout"; |
| 80bed05 | 6 | import { reportError } from "./lib/observability"; |
| 3ef4c9d | 7 | import { requestContext } from "./middleware/request-context"; |
| 8 | import { rateLimit } from "./middleware/rate-limit"; | |
| 79136bb | 9 | import gitRoutes from "./routes/git"; |
| 10 | import apiRoutes from "./routes/api"; | |
| 45e31d0 | 11 | import apiV2Routes from "./routes/api-v2"; |
| 12 | import apiDocsRoutes from "./routes/api-docs"; | |
| 79136bb | 13 | import authRoutes from "./routes/auth"; |
| 14 | import settingsRoutes from "./routes/settings"; | |
| 7298a17 | 15 | import settings2faRoutes from "./routes/settings-2fa"; |
| 79136bb | 16 | import issueRoutes from "./routes/issues"; |
| 17 | import repoSettings from "./routes/repo-settings"; | |
| 23d1a81 | 18 | import collaboratorRoutes from "./routes/collaborators"; |
| 04f6b7f | 19 | import teamCollaboratorRoutes from "./routes/team-collaborators"; |
| 20 | import invitesRoutes from "./routes/invites"; | |
| 21 | import liveEventsRoutes from "./routes/live-events"; | |
| 79136bb | 22 | import compareRoutes from "./routes/compare"; |
| 0074234 | 23 | import pullRoutes from "./routes/pulls"; |
| 24 | import editorRoutes from "./routes/editor"; | |
| c81ab7a | 25 | import forkRoutes from "./routes/fork"; |
| 26 | import webhookRoutes from "./routes/webhooks"; | |
| 27 | import exploreRoutes from "./routes/explore"; | |
| 28 | import tokenRoutes from "./routes/tokens"; | |
| 43de941 | 29 | import contributorRoutes from "./routes/contributors"; |
| 699e5c7 | 30 | import healthRoutes from "./routes/health-probe"; |
| 31 | import healthDashboardRoutes from "./routes/health"; | |
| 2316be6 | 32 | import statusRoutes from "./routes/status"; |
| 80bed05 | 33 | import helpRoutes from "./routes/help"; |
| b0148e9 | 34 | import marketingRoutes from "./routes/marketing"; |
| 5618f9a | 35 | import seoRoutes from "./routes/seo"; |
| 05cdb85 | 36 | import versionRoutes from "./routes/version"; |
| f295f78 | 37 | import { platformStatus } from "./routes/platform-status"; |
| 52ad8b1 | 38 | import publicStatsRoutes from "./routes/public-stats"; |
| 39 | import demoRoutes from "./routes/demo"; | |
| 16b325c | 40 | import insightRoutes from "./routes/insights"; |
| f1ab587 | 41 | import dashboardRoutes from "./routes/dashboard"; |
| 36b4cbd | 42 | import legalRoutes from "./routes/legal"; |
| bdbd0de | 43 | import importRoutes from "./routes/import"; |
| 14c3cc8 | 44 | import importBulkRoutes from "./routes/import-bulk"; |
| 45 | import migrationRoutes from "./routes/migrations"; | |
| 46 | import specsRoutes from "./routes/specs"; | |
| 79136bb | 47 | import webRoutes from "./routes/web"; |
| 0316dbb | 48 | import hookRoutes from "./routes/hooks"; |
| 49 | import eventsRoutes from "./routes/events"; | |
| 50 | import passkeyRoutes from "./routes/passkeys"; | |
| 51 | import oauthRoutes from "./routes/oauth"; | |
| 52 | import developerAppsRoutes from "./routes/developer-apps"; | |
| 53 | import themeRoutes from "./routes/theme"; | |
| 54 | import auditRoutes from "./routes/audit"; | |
| 55 | import reactionRoutes from "./routes/reactions"; | |
| 56 | import savedReplyRoutes from "./routes/saved-replies"; | |
| 57 | import deploymentRoutes from "./routes/deployments"; | |
| 58 | import orgRoutes from "./routes/orgs"; | |
| 59 | import notificationRoutes from "./routes/notifications"; | |
| 60 | import onboardingRoutes from "./routes/onboarding"; | |
| 61 | import adminRoutes from "./routes/admin"; | |
| 62 | import advisoriesRoutes from "./routes/advisories"; | |
| 63 | import aiChangelogRoutes from "./routes/ai-changelog"; | |
| 64 | import aiExplainRoutes from "./routes/ai-explain"; | |
| 65 | import aiTestsRoutes from "./routes/ai-tests"; | |
| 66 | import askRoutes from "./routes/ask"; | |
| 67 | import billingRoutes from "./routes/billing"; | |
| 6778ad2 | 68 | import stripeWebhookRoutes from "./routes/stripe-webhook"; |
| 0316dbb | 69 | import codeScanningRoutes from "./routes/code-scanning"; |
| 70 | import commitStatusesRoutes from "./routes/commit-statuses"; | |
| 71 | import copilotRoutes from "./routes/copilot"; | |
| 72 | import depUpdaterRoutes from "./routes/dep-updater"; | |
| 73 | import depsRoutes from "./routes/deps"; | |
| 74 | import discussionsRoutes from "./routes/discussions"; | |
| 75 | import environmentsRoutes from "./routes/environments"; | |
| 76 | import followsRoutes from "./routes/follows"; | |
| 77 | import gatesRoutes from "./routes/gates"; | |
| 78 | import gistsRoutes from "./routes/gists"; | |
| 79 | import graphqlRoutes from "./routes/graphql"; | |
| 2c2163e | 80 | import mcpRoutes from "./routes/mcp"; |
| 0316dbb | 81 | import marketplaceRoutes from "./routes/marketplace"; |
| 82 | import mergeQueueRoutes from "./routes/merge-queue"; | |
| 83 | import mirrorsRoutes from "./routes/mirrors"; | |
| 84 | import orgInsightsRoutes from "./routes/org-insights"; | |
| 85 | import packagesRoutes from "./routes/packages"; | |
| 86 | import packagesApiRoutes from "./routes/packages-api"; | |
| 87 | import pagesRoutes from "./routes/pages"; | |
| 88 | import projectsRoutes from "./routes/projects"; | |
| 89 | import protectedTagsRoutes from "./routes/protected-tags"; | |
| 90 | import pwaRoutes from "./routes/pwa"; | |
| 46d6165 | 91 | import installRoutes from "./routes/install"; |
| 0316dbb | 92 | import releasesRoutes from "./routes/releases"; |
| 93 | import requiredChecksRoutes from "./routes/required-checks"; | |
| 94 | import rulesetsRoutes from "./routes/rulesets"; | |
| 95 | import searchRoutes from "./routes/search"; | |
| 96 | import semanticSearchRoutes from "./routes/semantic-search"; | |
| 97 | import signingKeysRoutes from "./routes/signing-keys"; | |
| 98 | import sponsorsRoutes from "./routes/sponsors"; | |
| 99 | import ssoRoutes from "./routes/sso"; | |
| 46d6165 | 100 | import githubOauthRoutes from "./routes/github-oauth"; |
| 0316dbb | 101 | import symbolsRoutes from "./routes/symbols"; |
| 102 | import templatesRoutes from "./routes/templates"; | |
| 103 | import trafficRoutes from "./routes/traffic"; | |
| 104 | import wikisRoutes from "./routes/wikis"; | |
| 105 | import workflowsRoutes from "./routes/workflows"; | |
| 5ff9cc2 | 106 | import workflowArtifactsRoutes from "./routes/workflow-artifacts"; |
| 107 | import workflowSecretsRoutes from "./routes/workflow-secrets"; | |
| 46d6165 | 108 | import sleepModeRoutes from "./routes/sleep-mode"; |
| 52ad8b1 | 109 | import vsGithubRoutes from "./routes/vs-github"; |
| 59b6fb2 | 110 | import { authRateLimit, gitRateLimit, searchRateLimit } from "./middleware/rate-limit"; |
| 111 | import { csrfToken, csrfProtect } from "./middleware/csrf"; | |
| 79136bb | 112 | |
| 2316901 | 113 | import type { AuthEnv } from "./middleware/auth"; |
| 114 | ||
| 115 | const app = new Hono<AuthEnv>(); | |
| 79136bb | 116 | |
| 3ef4c9d | 117 | // Request context (request ID, start time) runs before everything else |
| 118 | app.use("*", requestContext); | |
| 05b973e | 119 | // Middleware — compression first (wraps all responses) |
| 120 | app.use("*", compress()); | |
| 121 | // Logger only on non-git routes to avoid overhead on clone/push | |
| 122 | app.use("*", async (c, next) => { | |
| 123 | if (c.req.path.includes(".git/")) return next(); | |
| 124 | return logger()(c, next); | |
| 125 | }); | |
| 79136bb | 126 | app.use("/api/*", cors()); |
| 290ea77 | 127 | |
| 128 | // Force fresh HTML on every request — kills browser HTTP cache holding stale | |
| 129 | // pre-redesign markup. JSON / static assets keep their own cache rules; only | |
| 130 | // text/html responses get the no-cache stamp. Without this, every push to | |
| 131 | // main left users staring at cached 80s-looking pages from before the design | |
| 132 | // landed. | |
| 133 | app.use("*", async (c, next) => { | |
| 134 | await next(); | |
| 135 | const ct = c.res.headers.get("content-type") || ""; | |
| 136 | if (ct.startsWith("text/html")) { | |
| 137 | c.header("cache-control", "no-cache, no-store, must-revalidate"); | |
| 138 | c.header("pragma", "no-cache"); | |
| 139 | c.header("expires", "0"); | |
| 140 | } | |
| 141 | }); | |
| 3ef4c9d | 142 | // Rate-limit API + auth endpoints (generous default) |
| 0316dbb | 143 | app.use("/api/*", rateLimit(120, 60_000, "api")); |
| 144 | app.use("/login", rateLimit(20, 60_000, "login")); | |
| 145 | app.use("/register", rateLimit(10, 60_000, "register")); | |
| 79136bb | 146 | |
| 59b6fb2 | 147 | // CSRF protection — set token on all requests, validate on mutations |
| 148 | app.use("*", csrfToken); | |
| 149 | app.use("*", csrfProtect); | |
| 150 | ||
| 45e31d0 | 151 | // Rate limit auth routes |
| 152 | app.use("/login", authRateLimit); | |
| 153 | app.use("/register", authRateLimit); | |
| 154 | ||
| 59b6fb2 | 155 | // Rate limit git operations |
| 156 | app.use("/:owner/:repo.git/*", gitRateLimit); | |
| 157 | ||
| 158 | // Rate limit search | |
| 159 | app.use("/:owner/:repo/search", searchRateLimit); | |
| 160 | app.use("/explore", searchRateLimit); | |
| 79136bb | 161 | |
| 162 | // Git Smart HTTP protocol routes (must be before web routes) | |
| 163 | app.route("/", gitRoutes); | |
| 164 | ||
| 45e31d0 | 165 | // REST API v1 (legacy) |
| 79136bb | 166 | app.route("/", apiRoutes); |
| 167 | ||
| 52ad8b1 | 168 | // Block L3 — /demo + /api/v2/demo/* live demo endpoints. Mounted BEFORE |
| 169 | // apiV2Routes so the /api/v2/demo/* JSON endpoints win over the v2 base | |
| 170 | // router's catch-shape, and BEFORE adminRoutes so the live /demo page | |
| 171 | // wins over the legacy /demo redirect in src/routes/admin.tsx. | |
| 172 | app.route("/", demoRoutes); | |
| 173 | ||
| 0316dbb | 174 | // REST API v2 (basePath /api/v2) |
| 175 | app.route("/", apiV2Routes); | |
| 176 | ||
| ad6d4ad | 177 | // Inbound API hooks (GateTest callback + backup PAT-authed /api/v1/gate-runs) |
| 178 | app.route("/", hookRoutes); | |
| 21f8dbd | 179 | app.route("/api/events", eventsRoutes); |
| ad6d4ad | 180 | |
| 45e31d0 | 181 | // API documentation |
| 182 | app.route("/", apiDocsRoutes); | |
| 79136bb | 183 | |
| 184 | // Auth routes (register, login, logout) | |
| 185 | app.route("/", authRoutes); | |
| 186 | ||
| 187 | // Settings routes (profile, SSH keys) | |
| 188 | app.route("/", settingsRoutes); | |
| 189 | ||
| 7298a17 | 190 | // 2FA / TOTP settings (Block B4) |
| 191 | app.route("/", settings2faRoutes); | |
| 192 | ||
| 2df1f8c | 193 | // WebAuthn / passkey routes (Block B5) |
| 194 | app.route("/", passkeyRoutes); | |
| 195 | ||
| 058d752 | 196 | // OAuth 2.0 provider (Block B6) |
| 197 | app.route("/", oauthRoutes); | |
| 198 | app.route("/", developerAppsRoutes); | |
| 199 | ||
| 6fc53bd | 200 | // Theme toggle (dark/light cookie) |
| 201 | app.route("/", themeRoutes); | |
| 202 | ||
| 203 | // Audit log UI | |
| 204 | app.route("/", auditRoutes); | |
| 205 | ||
| 206 | // Reactions API (issues, PRs, comments) | |
| 207 | app.route("/", reactionRoutes); | |
| 208 | ||
| 24cf2ca | 209 | // Saved replies (per-user canned comment templates) |
| 210 | app.route("/", savedReplyRoutes); | |
| 211 | ||
| 212 | // Environments + deployment history UI | |
| 213 | app.route("/", deploymentRoutes); | |
| 214 | ||
| 6563f0a | 215 | // Organizations + teams (Block B1) |
| 216 | app.route("/", orgRoutes); | |
| 217 | ||
| c81ab7a | 218 | // API tokens |
| 219 | app.route("/", tokenRoutes); | |
| 220 | ||
| 59b6fb2 | 221 | // Notifications |
| 3ef4c9d | 222 | app.route("/", notificationRoutes); |
| 223 | ||
| 79136bb | 224 | // Repo settings (description, visibility, delete) |
| 225 | app.route("/", repoSettings); | |
| 226 | ||
| 23d1a81 | 227 | // Repo collaborators (add/list/remove) |
| 228 | app.route("/", collaboratorRoutes); | |
| 229 | ||
| 04f6b7f | 230 | // Team-based repo collaborators (invite a whole team) |
| 231 | app.route("/", teamCollaboratorRoutes); | |
| 232 | ||
| 233 | // Collaborator invite accept flow (token-based) | |
| 234 | app.route("/", invitesRoutes); | |
| 235 | ||
| 236 | // Real-time SSE endpoint (topic-based live updates) | |
| 237 | app.route("/", liveEventsRoutes); | |
| 238 | ||
| c81ab7a | 239 | // Webhooks management |
| 240 | app.route("/", webhookRoutes); | |
| 241 | ||
| 79136bb | 242 | // Compare view (branch diffs) |
| 243 | app.route("/", compareRoutes); | |
| 244 | ||
| 245 | // Issue tracker | |
| 246 | app.route("/", issueRoutes); | |
| 247 | ||
| 0074234 | 248 | // Pull requests |
| 249 | app.route("/", pullRoutes); | |
| 250 | ||
| c81ab7a | 251 | // Fork |
| 252 | app.route("/", forkRoutes); | |
| 253 | ||
| 0074234 | 254 | // Web file editor |
| 255 | app.route("/", editorRoutes); | |
| 256 | ||
| 43de941 | 257 | // Contributors |
| 258 | app.route("/", contributorRoutes); | |
| 259 | ||
| 699e5c7 | 260 | // Health liveness + metrics endpoints |
| 2c34075 | 261 | app.route("/", healthRoutes); |
| 262 | ||
| f295f78 | 263 | // Cross-product platform status (public, CORS-open — see docs/PLATFORM_STATUS.md) |
| 264 | app.route("/api/platform-status", platformStatus); | |
| 265 | ||
| 52ad8b1 | 266 | // Block L4 — Public stats counters (powers landing-page social proof) |
| 267 | app.route("/", publicStatsRoutes); | |
| 268 | ||
| 269 | // Block L3 — Live /demo page + /api/v2/demo/* endpoints | |
| 270 | app.route("/", demoRoutes); | |
| 271 | ||
| 2316be6 | 272 | // Public /status — human-readable platform health page |
| 273 | app.route("/", statusRoutes); | |
| 274 | ||
| 80bed05 | 275 | // /help — quickstart + API cheatsheet |
| 276 | app.route("/", helpRoutes); | |
| 277 | ||
| b0148e9 | 278 | // /pricing, /features, /about — marketing surface |
| 279 | app.route("/", marketingRoutes); | |
| 280 | ||
| 5618f9a | 281 | // SEO: robots.txt + sitemap.xml |
| 282 | app.route("/", seoRoutes); | |
| 283 | ||
| 05cdb85 | 284 | // /api/version — live build SHA + uptime; client poller uses this to |
| 285 | // surface 'New version available — reload' banners on deploy. | |
| 286 | app.route("/", versionRoutes); | |
| 287 | ||
| 699e5c7 | 288 | // Health dashboard (per-repo health page) |
| 289 | app.route("/", healthDashboardRoutes); | |
| 290 | ||
| 16b325c | 291 | // Insights (time-travel, dependencies, rollback) |
| 292 | app.route("/", insightRoutes); | |
| 293 | ||
| f1ab587 | 294 | // Command center dashboard |
| 295 | app.route("/", dashboardRoutes); | |
| 296 | ||
| 36b4cbd | 297 | // Legal pages (terms, privacy, AUP) |
| 298 | app.route("/", legalRoutes); | |
| 299 | ||
| bdbd0de | 300 | // GitHub import / migration |
| 301 | app.route("/", importRoutes); | |
| 14c3cc8 | 302 | app.route("/", importBulkRoutes); |
| 303 | app.route("/", migrationRoutes); | |
| 304 | ||
| 305 | // Spec-to-PR (experimental AI-generated draft PRs) | |
| 306 | app.route("/", specsRoutes); | |
| bdbd0de | 307 | |
| c81ab7a | 308 | // Explore page |
| 309 | app.route("/", exploreRoutes); | |
| 310 | ||
| 59b6fb2 | 311 | // Onboarding |
| 312 | app.route("/", onboardingRoutes); | |
| 313 | ||
| 0316dbb | 314 | // Admin + feature routes |
| 315 | app.route("/", adminRoutes); | |
| 316 | app.route("/", advisoriesRoutes); | |
| 317 | app.route("/", aiChangelogRoutes); | |
| 318 | app.route("/", aiExplainRoutes); | |
| 319 | app.route("/", aiTestsRoutes); | |
| 320 | app.route("/", askRoutes); | |
| 321 | app.route("/", billingRoutes); | |
| 6778ad2 | 322 | app.route("/", stripeWebhookRoutes); |
| 0316dbb | 323 | app.route("/", codeScanningRoutes); |
| 324 | app.route("/", commitStatusesRoutes); | |
| 325 | app.route("/", copilotRoutes); | |
| 326 | app.route("/", depUpdaterRoutes); | |
| 327 | app.route("/", depsRoutes); | |
| 328 | app.route("/", discussionsRoutes); | |
| 329 | app.route("/", environmentsRoutes); | |
| 330 | app.route("/", followsRoutes); | |
| 331 | app.route("/", gatesRoutes); | |
| 332 | app.route("/", gistsRoutes); | |
| 333 | app.route("/", graphqlRoutes); | |
| 2c2163e | 334 | app.route("/", mcpRoutes); |
| 0316dbb | 335 | app.route("/", marketplaceRoutes); |
| 336 | app.route("/", mergeQueueRoutes); | |
| 337 | app.route("/", mirrorsRoutes); | |
| 338 | app.route("/", orgInsightsRoutes); | |
| 339 | app.route("/", packagesRoutes); | |
| 340 | app.route("/", packagesApiRoutes); | |
| 341 | app.route("/", pagesRoutes); | |
| 342 | app.route("/", projectsRoutes); | |
| 343 | app.route("/", protectedTagsRoutes); | |
| 344 | app.route("/", pwaRoutes); | |
| 46d6165 | 345 | app.route("/", installRoutes); |
| 0316dbb | 346 | app.route("/", releasesRoutes); |
| 347 | app.route("/", requiredChecksRoutes); | |
| 348 | app.route("/", rulesetsRoutes); | |
| 349 | app.route("/", searchRoutes); | |
| 350 | app.route("/", semanticSearchRoutes); | |
| 351 | app.route("/", signingKeysRoutes); | |
| 352 | app.route("/", sponsorsRoutes); | |
| 353 | app.route("/", ssoRoutes); | |
| 46d6165 | 354 | app.route("/", githubOauthRoutes); |
| 0316dbb | 355 | app.route("/", symbolsRoutes); |
| 356 | app.route("/", templatesRoutes); | |
| 357 | app.route("/", trafficRoutes); | |
| 358 | app.route("/", wikisRoutes); | |
| 359 | app.route("/", workflowsRoutes); | |
| 5ff9cc2 | 360 | app.route("/", workflowArtifactsRoutes); |
| 361 | app.route("/", workflowSecretsRoutes); | |
| 46d6165 | 362 | app.route("/", sleepModeRoutes); |
| 52ad8b1 | 363 | app.route("/", vsGithubRoutes); |
| 0316dbb | 364 | |
| 79136bb | 365 | // Web UI (catch-all, must be last) |
| 366 | app.route("/", webRoutes); | |
| 367 | ||
| 368 | // Global 404 | |
| 369 | app.notFound((c) => { | |
| 370 | return c.html( | |
| 371 | <Layout title="Not Found"> | |
| e1db10e | 372 | <div class="error-page"> |
| 373 | <div class="error-page-code">404</div> | |
| 374 | <div class="eyebrow">Not found</div> | |
| 375 | <h1 class="display error-page-title"> | |
| 376 | That page <span class="gradient-text">isn't here.</span> | |
| 377 | </h1> | |
| 378 | <p class="error-page-sub"> | |
| 379 | The URL might be wrong, the resource might have moved, or you | |
| 380 | might not have permission to see it. | |
| 381 | </p> | |
| 382 | <div class="error-page-actions"> | |
| 383 | <a href="/" class="btn btn-primary btn-lg">Go home</a> | |
| 384 | <a href="/explore" class="btn btn-ghost btn-lg">Explore repos</a> | |
| 385 | </div> | |
| 386 | <div class="error-page-meta"> | |
| 387 | <span class="meta-mono">{c.req.method} {c.req.path}</span> | |
| 388 | </div> | |
| 79136bb | 389 | </div> |
| 390 | </Layout>, | |
| 391 | 404 | |
| 392 | ); | |
| 393 | }); | |
| 394 | ||
| 395 | // Global error handler | |
| 396 | app.onError((err, c) => { | |
| 80bed05 | 397 | reportError(err, { |
| 398 | requestId: c.get("requestId"), | |
| 399 | path: c.req.path, | |
| 400 | method: c.req.method, | |
| 401 | }); | |
| e1db10e | 402 | const requestId = c.get("requestId" as never) as string | undefined; |
| 79136bb | 403 | return c.html( |
| 404 | <Layout title="Error"> | |
| e1db10e | 405 | <div class="error-page"> |
| 406 | <div class="error-page-code error-page-code-err">500</div> | |
| 407 | <div class="eyebrow" style="color:var(--red)">Server error</div> | |
| 408 | <h1 class="display error-page-title"> | |
| 409 | Something <span class="gradient-text">went wrong.</span> | |
| 410 | </h1> | |
| 411 | <p class="error-page-sub"> | |
| 412 | The error has been reported. Try again — if it persists, file | |
| 413 | an issue with the request ID below. | |
| 414 | </p> | |
| 415 | <div class="error-page-actions"> | |
| 416 | <a href={c.req.path} class="btn btn-primary btn-lg">Retry</a> | |
| 417 | <a href="/" class="btn btn-ghost btn-lg">Go home</a> | |
| 418 | </div> | |
| 419 | {requestId && ( | |
| 420 | <div class="error-page-meta"> | |
| 421 | <span class="meta-mono">request-id: {requestId}</span> | |
| 422 | </div> | |
| 423 | )} | |
| 79136bb | 424 | {process.env.NODE_ENV !== "production" && ( |
| e1db10e | 425 | <pre class="error-page-trace">{err.message}</pre> |
| 79136bb | 426 | )} |
| 427 | </div> | |
| 428 | </Layout>, | |
| 429 | 500 | |
| 430 | ); | |
| 431 | }); | |
| 432 | ||
| 433 | export default app; |