@pylonsync/create-pylon 0.3.373 → 0.3.375
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.
- package/package.json +1 -1
- package/templates/_root/AGENTS.md +1 -1
- package/templates/agency/AGENTS.md +1 -1
- package/templates/agency/app/(marketing)/layout.tsx +136 -0
- package/templates/{creator/app → agency/app/(marketing)}/not-found.tsx +6 -2
- package/templates/agency/app/error.tsx +6 -3
- package/templates/agency/app/layout.tsx +8 -134
- package/templates/agency/app/login/page.tsx +3 -2
- package/templates/ai-chat/AGENTS.md +1 -1
- package/templates/ai-chat/app/(chat)/layout.tsx +46 -0
- package/templates/ai-chat/app/{not-found.tsx → (chat)/not-found.tsx} +5 -2
- package/templates/ai-chat/app/error.tsx +6 -3
- package/templates/ai-chat/app/layout.tsx +6 -39
- package/templates/ai-chat/app/login/page.tsx +2 -1
- package/templates/ai-studio/AGENTS.md +1 -1
- package/templates/ai-studio/app/(studio)/layout.tsx +46 -0
- package/templates/{agency/app → ai-studio/app/(studio)}/not-found.tsx +5 -2
- package/templates/ai-studio/app/error.tsx +6 -3
- package/templates/ai-studio/app/layout.tsx +6 -39
- package/templates/ai-studio/app/login/page.tsx +2 -1
- package/templates/barebones/AGENTS.md +1 -1
- package/templates/chat/AGENTS.md +1 -1
- package/templates/consumer/AGENTS.md +1 -1
- package/templates/creator/AGENTS.md +1 -1
- package/templates/creator/app/(marketing)/layout.tsx +122 -0
- package/templates/{ai-studio/app → creator/app/(marketing)}/not-found.tsx +6 -2
- package/templates/creator/app/error.tsx +6 -3
- package/templates/creator/app/layout.tsx +8 -120
- package/templates/creator/app/login/page.tsx +3 -2
- package/templates/crm/AGENTS.md +1 -1
- package/templates/directory/AGENTS.md +1 -1
- package/templates/directory/app/(marketing)/layout.tsx +133 -0
- package/templates/directory/app/(marketing)/not-found.tsx +23 -0
- package/templates/directory/app/error.tsx +6 -3
- package/templates/directory/app/layout.tsx +8 -131
- package/templates/directory/app/login/page.tsx +3 -2
- package/templates/helpdesk/AGENTS.md +1 -1
- package/templates/inventory/AGENTS.md +1 -1
- package/templates/invoices/AGENTS.md +1 -1
- package/templates/local-service/AGENTS.md +1 -1
- package/templates/local-service/app/(marketing)/layout.tsx +119 -0
- package/templates/local-service/app/(marketing)/not-found.tsx +23 -0
- package/templates/local-service/app/{page.tsx → (marketing)/page.tsx} +2 -2
- package/templates/local-service/app/error.tsx +3 -1
- package/templates/local-service/app/layout.tsx +8 -116
- package/templates/local-service/app/login/page.tsx +3 -2
- package/templates/local-service/components/marketing.tsx +1 -1
- package/templates/marketplace/AGENTS.md +1 -1
- package/templates/projects/AGENTS.md +1 -1
- package/templates/restaurant/AGENTS.md +1 -1
- package/templates/restaurant/app/(marketing)/layout.tsx +119 -0
- package/templates/restaurant/app/(marketing)/not-found.tsx +23 -0
- package/templates/restaurant/app/{page.tsx → (marketing)/page.tsx} +2 -2
- package/templates/restaurant/app/error.tsx +3 -1
- package/templates/restaurant/app/layout.tsx +8 -116
- package/templates/restaurant/app/login/page.tsx +3 -2
- package/templates/restaurant/components/marketing.tsx +1 -1
- package/templates/saas/AGENTS.md +1 -1
- package/templates/saas/app/{auth-shell.tsx → (auth)/layout.tsx} +21 -29
- package/templates/saas/app/(auth)/login/page.tsx +33 -0
- package/templates/saas/app/(auth)/signup/page.tsx +32 -0
- package/templates/saas/app/(marketing)/layout.tsx +411 -0
- package/templates/saas/app/{not-found.tsx → (marketing)/not-found.tsx} +9 -5
- package/templates/saas/app/dashboard/billing/page.tsx +7 -20
- package/templates/saas/app/dashboard/layout.tsx +58 -0
- package/templates/saas/app/dashboard/members/page.tsx +9 -22
- package/templates/saas/app/dashboard/page.tsx +15 -31
- package/templates/saas/app/dashboard/projects/page.tsx +4 -23
- package/templates/saas/app/dashboard/settings/page.tsx +7 -19
- package/templates/saas/app/error.tsx +7 -5
- package/templates/saas/app/layout.tsx +7 -408
- package/templates/saas/components/dashboard-shell.tsx +10 -6
- package/templates/shop/AGENTS.md +1 -1
- package/templates/shop/app/(marketing)/layout.tsx +122 -0
- package/templates/shop/app/(marketing)/not-found.tsx +23 -0
- package/templates/shop/app/{page.tsx → (marketing)/page.tsx} +1 -1
- package/templates/shop/app/error.tsx +3 -1
- package/templates/shop/app/layout.tsx +8 -120
- package/templates/shop/app/login/page.tsx +3 -2
- package/templates/todo/AGENTS.md +1 -1
- package/templates/waitlist/AGENTS.md +1 -1
- package/templates/waitlist/app/(marketing)/layout.tsx +122 -0
- package/templates/waitlist/app/(marketing)/not-found.tsx +23 -0
- package/templates/waitlist/app/{page.tsx → (marketing)/page.tsx} +1 -1
- package/templates/waitlist/app/error.tsx +3 -1
- package/templates/waitlist/app/layout.tsx +8 -120
- package/templates/waitlist/app/login/page.tsx +3 -2
- package/templates/directory/app/not-found.tsx +0 -19
- package/templates/local-service/app/not-found.tsx +0 -19
- package/templates/restaurant/app/not-found.tsx +0 -19
- package/templates/saas/app/login/page.tsx +0 -27
- package/templates/saas/app/signup/page.tsx +0 -24
- package/templates/shop/app/not-found.tsx +0 -19
- package/templates/waitlist/app/not-found.tsx +0 -19
- /package/templates/agency/app/{contact-form.tsx → (marketing)/contact-form.tsx} +0 -0
- /package/templates/agency/app/{page.tsx → (marketing)/page.tsx} +0 -0
- /package/templates/agency/app/{seeder.tsx → (marketing)/seeder.tsx} +0 -0
- /package/templates/agency/app/{work → (marketing)/work}/[slug]/page.tsx +0 -0
- /package/templates/agency/app/{work → (marketing)/work}/page.tsx +0 -0
- /package/templates/ai-chat/app/{chat-client.tsx → (chat)/chat-client.tsx} +0 -0
- /package/templates/ai-chat/app/{page.tsx → (chat)/page.tsx} +0 -0
- /package/templates/ai-studio/app/{page.tsx → (studio)/page.tsx} +0 -0
- /package/templates/ai-studio/app/{studio-client.tsx → (studio)/studio-client.tsx} +0 -0
- /package/templates/creator/app/{newsletter-signup.tsx → (marketing)/newsletter-signup.tsx} +0 -0
- /package/templates/creator/app/{page.tsx → (marketing)/page.tsx} +0 -0
- /package/templates/directory/app/{directory-browse.tsx → (marketing)/directory-browse.tsx} +0 -0
- /package/templates/directory/app/{page.tsx → (marketing)/page.tsx} +0 -0
- /package/templates/directory/app/{submit → (marketing)/submit}/page.tsx +0 -0
- /package/templates/directory/app/{submit-form.tsx → (marketing)/submit-form.tsx} +0 -0
- /package/templates/local-service/app/{booking-widget.tsx → (marketing)/booking-widget.tsx} +0 -0
- /package/templates/restaurant/app/{reservation-widget.tsx → (marketing)/reservation-widget.tsx} +0 -0
- /package/templates/saas/app/{auth-form.tsx → (auth)/auth-form.tsx} +0 -0
- /package/templates/saas/app/{company → (marketing)/company}/[slug]/page.tsx +0 -0
- /package/templates/saas/app/{compare → (marketing)/compare}/[slug]/page.tsx +0 -0
- /package/templates/saas/app/{page.tsx → (marketing)/page.tsx} +0 -0
- /package/templates/saas/app/{products → (marketing)/products}/[slug]/page.tsx +0 -0
- /package/templates/saas/app/{resources → (marketing)/resources}/[slug]/page.tsx +0 -0
- /package/templates/saas/app/{solutions → (marketing)/solutions}/[slug]/page.tsx +0 -0
- /package/templates/shop/app/{shop-client.tsx → (marketing)/shop-client.tsx} +0 -0
- /package/templates/shop/app/{success → (marketing)/success}/page.tsx +0 -0
- /package/templates/waitlist/app/{waitlist-hero.tsx → (marketing)/waitlist-hero.tsx} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pylonsync/create-pylon",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.375",
|
|
4
4
|
"description": "Scaffold a new Pylon app — realtime backend + web/mobile/expo frontends in one command. Run via `npm create @pylonsync/pylon@latest`.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -6,7 +6,7 @@ Pylon serves the API, auth, sync, WebSocket, SSE, and native React 19 SSR from o
|
|
|
6
6
|
|
|
7
7
|
**Unified SSR app:**
|
|
8
8
|
- `app.ts`: data model + manifest (`entity()` + `field.*`, queries/actions/policies, `routes: await discoverAppRoutes()`). Ends with `console.log(JSON.stringify(manifest))`.
|
|
9
|
-
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. `app/layout.tsx` is the shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
9
|
+
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. A `(group)` directory is stripped from the URL — `app/(marketing)/about/page.tsx` still serves `/about` — so a group's `layout.tsx` gives one section its own chrome (nav, footer) without changing any path; routes outside the group render without it. `app/layout.tsx` is the document shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
10
10
|
- `app/globals.css`: Tailwind v4 entrypoint (auto-compiled and injected).
|
|
11
11
|
- `functions/`: server functions, one per file, `default`-exported.
|
|
12
12
|
- `.pylon/`: local development state (SQLite, jobs, sessions, uploads). Created by `pylon dev`. Do not commit.
|
|
@@ -6,7 +6,7 @@ Pylon serves the API, auth, sync, WebSocket, SSE, and native React 19 SSR from o
|
|
|
6
6
|
|
|
7
7
|
**Unified SSR app:**
|
|
8
8
|
- `app.ts`: data model + manifest (`entity()` + `field.*`, queries/actions/policies, `routes: await discoverAppRoutes()`). Ends with `console.log(JSON.stringify(manifest))`.
|
|
9
|
-
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. `app/layout.tsx` is the shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
9
|
+
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. A `(group)` directory is stripped from the URL — `app/(marketing)/about/page.tsx` still serves `/about` — so a group's `layout.tsx` gives one section its own chrome (nav, footer) without changing any path; routes outside the group render without it. `app/layout.tsx` is the document shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
10
10
|
- `app/globals.css`: Tailwind v4 entrypoint (auto-compiled and injected).
|
|
11
11
|
- `functions/`: server functions, one per file, `default`-exported.
|
|
12
12
|
- `.pylon/`: local dev state (SQLite, jobs, sessions, uploads). Created by `pylon dev`. Do not commit.
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Link, type PageAuth } from "@pylonsync/react";
|
|
3
|
+
import { siteConfig } from "@/lib/site.config";
|
|
4
|
+
|
|
5
|
+
// `(marketing)` is a ROUTE GROUP: the parens segment is stripped from every
|
|
6
|
+
// URL (so `(marketing)/page.tsx` still serves `/`), and this layout wraps
|
|
7
|
+
// only the pages inside the group — a slim nav up top and a footer below,
|
|
8
|
+
// both driven by lib/site.config.ts. Routes outside the group (/login,
|
|
9
|
+
// /dashboard) render bare in the root shell. `auth.user_id` is resolved
|
|
10
|
+
// server-side from the session cookie before any HTML is sent, so the nav
|
|
11
|
+
// shows "Dashboard" once the owner is signed in and "Sign in" otherwise —
|
|
12
|
+
// no flash, no client fetch.
|
|
13
|
+
interface LayoutProps {
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
auth: PageAuth;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default function MarketingLayout({ children, auth }: LayoutProps) {
|
|
19
|
+
// A guest session (minted by <EnsureGuest> for the live counter) has a
|
|
20
|
+
// `guest_…` user id — that's an anonymous visitor, NOT the signed-in owner,
|
|
21
|
+
// so it shouldn't flip the nav to "Dashboard".
|
|
22
|
+
const signedIn = Boolean(auth?.user_id && !auth.user_id.startsWith("guest_"));
|
|
23
|
+
const { brand } = siteConfig;
|
|
24
|
+
|
|
25
|
+
return (
|
|
26
|
+
<>
|
|
27
|
+
<header className="sticky top-0 z-30 border-b border-zinc-200/70 bg-white/85 backdrop-blur">
|
|
28
|
+
<div className="mx-auto flex h-14 max-w-5xl items-center justify-between px-6">
|
|
29
|
+
<Link href="/" className="flex items-center gap-2">
|
|
30
|
+
<span className="flex size-6 items-center justify-center rounded-[7px] bg-zinc-900 text-[13px] font-bold text-white">
|
|
31
|
+
{brand.letter}
|
|
32
|
+
</span>
|
|
33
|
+
<span className="text-[15px] font-semibold tracking-tight text-zinc-900">
|
|
34
|
+
{brand.name}
|
|
35
|
+
</span>
|
|
36
|
+
</Link>
|
|
37
|
+
<nav className="flex items-center gap-1 sm:gap-2">
|
|
38
|
+
<a href="/work" className="hidden rounded-full px-3 py-1.5 text-[13px] font-medium text-zinc-600 transition-colors hover:text-zinc-900 sm:inline-flex">
|
|
39
|
+
Work
|
|
40
|
+
</a>
|
|
41
|
+
<a href="/#services" className="hidden rounded-full px-3 py-1.5 text-[13px] font-medium text-zinc-600 transition-colors hover:text-zinc-900 sm:inline-flex">
|
|
42
|
+
Services
|
|
43
|
+
</a>
|
|
44
|
+
{signedIn ? (
|
|
45
|
+
<Link
|
|
46
|
+
href="/dashboard"
|
|
47
|
+
className="inline-flex items-center rounded-full bg-zinc-900 px-3.5 py-1.5 text-[13px] font-medium text-white transition-colors hover:bg-zinc-700"
|
|
48
|
+
>
|
|
49
|
+
Dashboard
|
|
50
|
+
</Link>
|
|
51
|
+
) : (
|
|
52
|
+
<>
|
|
53
|
+
<Link
|
|
54
|
+
href="/login"
|
|
55
|
+
className="hidden rounded-full px-3 py-1.5 text-[13px] font-medium text-zinc-600 transition-colors hover:text-zinc-900 sm:inline-flex"
|
|
56
|
+
>
|
|
57
|
+
Sign in
|
|
58
|
+
</Link>
|
|
59
|
+
<a
|
|
60
|
+
href="/#contact"
|
|
61
|
+
className="inline-flex items-center rounded-full bg-brand px-3.5 py-1.5 text-[13px] font-medium text-white transition-opacity hover:opacity-90"
|
|
62
|
+
>
|
|
63
|
+
{siteConfig.hero.ctaLabel}
|
|
64
|
+
</a>
|
|
65
|
+
</>
|
|
66
|
+
)}
|
|
67
|
+
</nav>
|
|
68
|
+
</div>
|
|
69
|
+
</header>
|
|
70
|
+
|
|
71
|
+
<main className="flex-1">{children}</main>
|
|
72
|
+
|
|
73
|
+
<SiteFooter />
|
|
74
|
+
</>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function SiteFooter() {
|
|
79
|
+
const { brand } = siteConfig;
|
|
80
|
+
return (
|
|
81
|
+
<footer className="border-t border-zinc-200/70 bg-white">
|
|
82
|
+
<div className="mx-auto max-w-5xl px-6 py-12">
|
|
83
|
+
<div className="flex flex-col items-start justify-between gap-6 sm:flex-row">
|
|
84
|
+
<div className="max-w-sm">
|
|
85
|
+
<Link href="/" className="inline-flex items-center gap-2">
|
|
86
|
+
<span className="flex size-6 items-center justify-center rounded-[7px] bg-zinc-900 text-[13px] font-bold text-white">
|
|
87
|
+
{brand.letter}
|
|
88
|
+
</span>
|
|
89
|
+
<span className="text-[15px] font-semibold tracking-tight text-zinc-900">
|
|
90
|
+
{brand.name}
|
|
91
|
+
</span>
|
|
92
|
+
</Link>
|
|
93
|
+
<p className="mt-3 text-[13px] leading-relaxed text-zinc-500">
|
|
94
|
+
{brand.footerBlurb}
|
|
95
|
+
</p>
|
|
96
|
+
</div>
|
|
97
|
+
<div className="flex items-center gap-4">
|
|
98
|
+
{brand.socials.map((s) => (
|
|
99
|
+
<a
|
|
100
|
+
key={s.label}
|
|
101
|
+
href={s.href}
|
|
102
|
+
aria-label={s.label}
|
|
103
|
+
className="text-zinc-400 transition-colors hover:text-zinc-900"
|
|
104
|
+
>
|
|
105
|
+
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
|
106
|
+
<path d={s.path} />
|
|
107
|
+
</svg>
|
|
108
|
+
</a>
|
|
109
|
+
))}
|
|
110
|
+
<a
|
|
111
|
+
href={`mailto:${brand.email}`}
|
|
112
|
+
aria-label="Email"
|
|
113
|
+
className="text-zinc-400 transition-colors hover:text-zinc-900"
|
|
114
|
+
>
|
|
115
|
+
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
|
|
116
|
+
<rect x="3" y="5" width="18" height="14" rx="2" />
|
|
117
|
+
<path d="m3 7 9 6 9-6" />
|
|
118
|
+
</svg>
|
|
119
|
+
</a>
|
|
120
|
+
</div>
|
|
121
|
+
</div>
|
|
122
|
+
<div className="mt-10 flex flex-col items-start justify-between gap-3 border-t border-zinc-200/70 pt-6 text-[12px] text-zinc-400 sm:flex-row sm:items-center">
|
|
123
|
+
<span>
|
|
124
|
+
© {new Date().getFullYear()} {brand.copyrightName}
|
|
125
|
+
</span>
|
|
126
|
+
<span>
|
|
127
|
+
Built with{" "}
|
|
128
|
+
<a href="https://pylonsync.com" className="font-medium text-zinc-600 hover:text-zinc-900">
|
|
129
|
+
Pylon
|
|
130
|
+
</a>
|
|
131
|
+
</span>
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
</footer>
|
|
135
|
+
);
|
|
136
|
+
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { Link, type NotFoundProps } from "@pylonsync/react";
|
|
3
3
|
|
|
4
|
-
// `
|
|
5
|
-
// page calls `response.notFound()`).
|
|
4
|
+
// `(marketing)/not-found.tsx` → rendered at HTTP 404 for any unmatched URL
|
|
5
|
+
// (and when a page calls `response.notFound()`). It lives inside the
|
|
6
|
+
// `(marketing)` group on purpose: a group segment adds no URL prefix, so this
|
|
7
|
+
// is still the root 404 boundary, but it wraps in the marketing layout — a
|
|
8
|
+
// missing URL gets the site nav + footer instead of a bare page. Hydrated, so
|
|
9
|
+
// the link is a client nav.
|
|
6
10
|
export default function NotFound(_props: NotFoundProps) {
|
|
7
11
|
return (
|
|
8
12
|
<div className="mx-auto flex min-h-[60vh] max-w-3xl flex-col items-center justify-center px-6 text-center">
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type ErrorBoundaryProps } from "@pylonsync/react";
|
|
3
3
|
|
|
4
|
-
// `app/error.tsx` → the error boundary
|
|
5
|
-
// `
|
|
6
|
-
//
|
|
4
|
+
// `app/error.tsx` → the GLOBAL error boundary. Sitting at the app root
|
|
5
|
+
// (outside the `(marketing)` group), it catches a throw from any section —
|
|
6
|
+
// marketing, auth, or dashboard — and renders at HTTP 500 in the bare root
|
|
7
|
+
// shell. Hydrated + interactive: `reset()` re-attempts the route. The thrown
|
|
8
|
+
// error reaches the client as `{ message, digest }` only — the stack stays
|
|
9
|
+
// in the dev overlay / server logs.
|
|
7
10
|
export default function Error({ error, reset }: ErrorBoundaryProps) {
|
|
8
11
|
return (
|
|
9
12
|
<div className="mx-auto flex min-h-[60vh] max-w-3xl flex-col items-center justify-center px-6 text-center">
|
|
@@ -1,32 +1,18 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { Link, type PageAuth } from "@pylonsync/react";
|
|
3
2
|
import { siteConfig } from "@/lib/site.config";
|
|
4
3
|
import { SectionScroller } from "@/components/section-scroller";
|
|
5
4
|
|
|
6
|
-
// A layout wraps every page. This marketing layout renders a slim nav up top
|
|
7
|
-
// and a footer below, both driven by lib/site.config.ts. `auth.user_id` is
|
|
8
|
-
// resolved server-side from the session cookie before any HTML is sent, so the
|
|
9
|
-
// nav shows "Dashboard" once the owner is signed in and "Sign in" otherwise —
|
|
10
|
-
// no flash, no client fetch.
|
|
11
5
|
interface LayoutProps {
|
|
12
6
|
children: React.ReactNode;
|
|
13
|
-
url: string;
|
|
14
|
-
auth: PageAuth;
|
|
15
7
|
}
|
|
16
8
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
// The auth screens and the dashboard bring their own chrome, so they render
|
|
25
|
-
// bare (no marketing nav/footer). Match on the path PREFIX, not a substring.
|
|
26
|
-
const path = (url ?? "").split("?")[0];
|
|
27
|
-
const BARE_PREFIXES = ["/login", "/dashboard"];
|
|
28
|
-
const isBare = BARE_PREFIXES.some((p) => path === p || path.startsWith(p + "/"));
|
|
29
|
-
|
|
9
|
+
// The root layout is only the document shell: <html>, <head>, <body>, and the
|
|
10
|
+
// site-wide theme variables. Section chrome lives in route-group layouts —
|
|
11
|
+
// `(marketing)/layout.tsx` adds the nav + footer for every marketing page.
|
|
12
|
+
// Routes outside the group (/login, /dashboard) render bare here: the auth
|
|
13
|
+
// screen and the dashboard bring their own chrome.
|
|
14
|
+
export default function RootLayout({ children }: LayoutProps) {
|
|
15
|
+
const { colors } = siteConfig;
|
|
30
16
|
return (
|
|
31
17
|
<html
|
|
32
18
|
lang="en"
|
|
@@ -53,120 +39,8 @@ export default function RootLayout({ children, url, auth }: LayoutProps) {
|
|
|
53
39
|
</head>
|
|
54
40
|
<body className="flex min-h-screen flex-col bg-background text-foreground antialiased">
|
|
55
41
|
<SectionScroller />
|
|
56
|
-
{
|
|
57
|
-
children
|
|
58
|
-
) : (
|
|
59
|
-
<>
|
|
60
|
-
<header className="sticky top-0 z-30 border-b border-zinc-200/70 bg-white/85 backdrop-blur">
|
|
61
|
-
<div className="mx-auto flex h-14 max-w-5xl items-center justify-between px-6">
|
|
62
|
-
<Link href="/" className="flex items-center gap-2">
|
|
63
|
-
<span className="flex size-6 items-center justify-center rounded-[7px] bg-zinc-900 text-[13px] font-bold text-white">
|
|
64
|
-
{brand.letter}
|
|
65
|
-
</span>
|
|
66
|
-
<span className="text-[15px] font-semibold tracking-tight text-zinc-900">
|
|
67
|
-
{brand.name}
|
|
68
|
-
</span>
|
|
69
|
-
</Link>
|
|
70
|
-
<nav className="flex items-center gap-1 sm:gap-2">
|
|
71
|
-
<a href="/work" className="hidden rounded-full px-3 py-1.5 text-[13px] font-medium text-zinc-600 transition-colors hover:text-zinc-900 sm:inline-flex">
|
|
72
|
-
Work
|
|
73
|
-
</a>
|
|
74
|
-
<a href="/#services" className="hidden rounded-full px-3 py-1.5 text-[13px] font-medium text-zinc-600 transition-colors hover:text-zinc-900 sm:inline-flex">
|
|
75
|
-
Services
|
|
76
|
-
</a>
|
|
77
|
-
{signedIn ? (
|
|
78
|
-
<Link
|
|
79
|
-
href="/dashboard"
|
|
80
|
-
className="inline-flex items-center rounded-full bg-zinc-900 px-3.5 py-1.5 text-[13px] font-medium text-white transition-colors hover:bg-zinc-700"
|
|
81
|
-
>
|
|
82
|
-
Dashboard
|
|
83
|
-
</Link>
|
|
84
|
-
) : (
|
|
85
|
-
<>
|
|
86
|
-
<Link
|
|
87
|
-
href="/login"
|
|
88
|
-
className="hidden rounded-full px-3 py-1.5 text-[13px] font-medium text-zinc-600 transition-colors hover:text-zinc-900 sm:inline-flex"
|
|
89
|
-
>
|
|
90
|
-
Sign in
|
|
91
|
-
</Link>
|
|
92
|
-
<a
|
|
93
|
-
href="/#contact"
|
|
94
|
-
className="inline-flex items-center rounded-full bg-brand px-3.5 py-1.5 text-[13px] font-medium text-white transition-opacity hover:opacity-90"
|
|
95
|
-
>
|
|
96
|
-
{siteConfig.hero.ctaLabel}
|
|
97
|
-
</a>
|
|
98
|
-
</>
|
|
99
|
-
)}
|
|
100
|
-
</nav>
|
|
101
|
-
</div>
|
|
102
|
-
</header>
|
|
103
|
-
|
|
104
|
-
<main className="flex-1">{children}</main>
|
|
105
|
-
|
|
106
|
-
<SiteFooter />
|
|
107
|
-
</>
|
|
108
|
-
)}
|
|
42
|
+
{children}
|
|
109
43
|
</body>
|
|
110
44
|
</html>
|
|
111
45
|
);
|
|
112
46
|
}
|
|
113
|
-
|
|
114
|
-
function SiteFooter() {
|
|
115
|
-
const { brand } = siteConfig;
|
|
116
|
-
return (
|
|
117
|
-
<footer className="border-t border-zinc-200/70 bg-white">
|
|
118
|
-
<div className="mx-auto max-w-5xl px-6 py-12">
|
|
119
|
-
<div className="flex flex-col items-start justify-between gap-6 sm:flex-row">
|
|
120
|
-
<div className="max-w-sm">
|
|
121
|
-
<Link href="/" className="inline-flex items-center gap-2">
|
|
122
|
-
<span className="flex size-6 items-center justify-center rounded-[7px] bg-zinc-900 text-[13px] font-bold text-white">
|
|
123
|
-
{brand.letter}
|
|
124
|
-
</span>
|
|
125
|
-
<span className="text-[15px] font-semibold tracking-tight text-zinc-900">
|
|
126
|
-
{brand.name}
|
|
127
|
-
</span>
|
|
128
|
-
</Link>
|
|
129
|
-
<p className="mt-3 text-[13px] leading-relaxed text-zinc-500">
|
|
130
|
-
{brand.footerBlurb}
|
|
131
|
-
</p>
|
|
132
|
-
</div>
|
|
133
|
-
<div className="flex items-center gap-4">
|
|
134
|
-
{brand.socials.map((s) => (
|
|
135
|
-
<a
|
|
136
|
-
key={s.label}
|
|
137
|
-
href={s.href}
|
|
138
|
-
aria-label={s.label}
|
|
139
|
-
className="text-zinc-400 transition-colors hover:text-zinc-900"
|
|
140
|
-
>
|
|
141
|
-
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
|
142
|
-
<path d={s.path} />
|
|
143
|
-
</svg>
|
|
144
|
-
</a>
|
|
145
|
-
))}
|
|
146
|
-
<a
|
|
147
|
-
href={`mailto:${brand.email}`}
|
|
148
|
-
aria-label="Email"
|
|
149
|
-
className="text-zinc-400 transition-colors hover:text-zinc-900"
|
|
150
|
-
>
|
|
151
|
-
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
|
|
152
|
-
<rect x="3" y="5" width="18" height="14" rx="2" />
|
|
153
|
-
<path d="m3 7 9 6 9-6" />
|
|
154
|
-
</svg>
|
|
155
|
-
</a>
|
|
156
|
-
</div>
|
|
157
|
-
</div>
|
|
158
|
-
<div className="mt-10 flex flex-col items-start justify-between gap-3 border-t border-zinc-200/70 pt-6 text-[12px] text-zinc-400 sm:flex-row sm:items-center">
|
|
159
|
-
<span>
|
|
160
|
-
© {new Date().getFullYear()} {brand.copyrightName}
|
|
161
|
-
</span>
|
|
162
|
-
<span>
|
|
163
|
-
Built with{" "}
|
|
164
|
-
<a href="https://pylonsync.com" className="font-medium text-zinc-600 hover:text-zinc-900">
|
|
165
|
-
Pylon
|
|
166
|
-
</a>
|
|
167
|
-
</span>
|
|
168
|
-
</div>
|
|
169
|
-
</div>
|
|
170
|
-
</footer>
|
|
171
|
-
);
|
|
172
|
-
}
|
|
@@ -8,8 +8,9 @@ export const metadata: Metadata = {
|
|
|
8
8
|
robots: "noindex",
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
-
// `app/login/page.tsx` → `/login`. The owner's sign-in.
|
|
12
|
-
//
|
|
11
|
+
// `app/login/page.tsx` → `/login`. The owner's sign-in. It sits outside the
|
|
12
|
+
// `(marketing)` route group, so it renders bare — no marketing nav/footer.
|
|
13
|
+
// Already signed in?
|
|
13
14
|
// Skip straight to the dashboard — `response.redirect` in the synchronous shell
|
|
14
15
|
// render is a real 307 before any HTML is sent.
|
|
15
16
|
export default function LoginPage({ auth, response }: PageProps) {
|
|
@@ -6,7 +6,7 @@ Pylon serves the API, auth, sync, WebSocket, SSE, and native React 19 SSR from o
|
|
|
6
6
|
|
|
7
7
|
**Unified SSR app:**
|
|
8
8
|
- `app.ts`: data model + manifest (`entity()` + `field.*`, queries/actions/policies, `routes: await discoverAppRoutes()`). Ends with `console.log(JSON.stringify(manifest))`.
|
|
9
|
-
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. `app/layout.tsx` is the shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
9
|
+
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. A `(group)` directory is stripped from the URL — `app/(marketing)/about/page.tsx` still serves `/about` — so a group's `layout.tsx` gives one section its own chrome (nav, footer) without changing any path; routes outside the group render without it. `app/layout.tsx` is the document shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
10
10
|
- `app/globals.css`: Tailwind v4 entrypoint (auto-compiled and injected).
|
|
11
11
|
- `functions/`: server functions, one per file, `default`-exported.
|
|
12
12
|
- `.pylon/`: local dev state (SQLite, jobs, sessions, uploads). Created by `pylon dev`. Do not commit.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Link, type PageAuth } from "@pylonsync/react";
|
|
3
|
+
import { siteConfig } from "@/lib/site.config";
|
|
4
|
+
|
|
5
|
+
// `(chat)` is a ROUTE GROUP: the parens segment is stripped from every URL
|
|
6
|
+
// (so `(chat)/page.tsx` still serves `/`), and this layout wraps only the
|
|
7
|
+
// pages inside the group. /login sits outside it and renders bare in the
|
|
8
|
+
// root shell.
|
|
9
|
+
//
|
|
10
|
+
// App shell: a slim top bar over a full-height chat. `auth.user_id` is resolved
|
|
11
|
+
// server-side from the session cookie before any HTML is sent, so the bar shows
|
|
12
|
+
// the account / "Sign in" with no flash. The chat page fills the rest of the
|
|
13
|
+
// viewport (h-[calc(100vh-3.5rem)] in chat-client.tsx — keep the header at h-14).
|
|
14
|
+
interface LayoutProps {
|
|
15
|
+
children: React.ReactNode;
|
|
16
|
+
auth: PageAuth;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default function ChatLayout({ children, auth }: LayoutProps) {
|
|
20
|
+
const signedIn = Boolean(auth?.user_id);
|
|
21
|
+
const { brand } = siteConfig;
|
|
22
|
+
|
|
23
|
+
return (
|
|
24
|
+
<>
|
|
25
|
+
<header className="flex h-14 items-center justify-between border-b border-zinc-200 bg-white px-4">
|
|
26
|
+
<Link href="/" className="flex items-center gap-2">
|
|
27
|
+
<span className="flex size-6 items-center justify-center rounded-[7px] bg-brand text-[13px] font-bold text-white">
|
|
28
|
+
{brand.letter}
|
|
29
|
+
</span>
|
|
30
|
+
<span className="text-[15px] font-semibold tracking-tight text-zinc-900">{brand.name}</span>
|
|
31
|
+
</Link>
|
|
32
|
+
{signedIn ? (
|
|
33
|
+
<span className="text-[13px] text-zinc-400">Signed in</span>
|
|
34
|
+
) : (
|
|
35
|
+
<Link
|
|
36
|
+
href="/login"
|
|
37
|
+
className="rounded-full border border-zinc-300 px-3.5 py-1.5 text-[13px] font-medium text-zinc-700 transition-colors hover:bg-zinc-50"
|
|
38
|
+
>
|
|
39
|
+
Sign in
|
|
40
|
+
</Link>
|
|
41
|
+
)}
|
|
42
|
+
</header>
|
|
43
|
+
{children}
|
|
44
|
+
</>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { Link, type NotFoundProps } from "@pylonsync/react";
|
|
3
3
|
|
|
4
|
-
// `
|
|
5
|
-
// page calls `response.notFound()`).
|
|
4
|
+
// `(chat)/not-found.tsx` → rendered at HTTP 404 for any unmatched URL (and
|
|
5
|
+
// when a page calls `response.notFound()`). It lives inside the `(chat)` group
|
|
6
|
+
// on purpose: a group segment adds no URL prefix, so this is still the root
|
|
7
|
+
// 404 boundary, but it wraps in the app-shell layout — a missing URL gets the
|
|
8
|
+
// top bar instead of a bare page. Hydrated, so the link is a client nav.
|
|
6
9
|
export default function NotFound(_props: NotFoundProps) {
|
|
7
10
|
return (
|
|
8
11
|
<div className="mx-auto flex min-h-[60vh] max-w-3xl flex-col items-center justify-center px-6 text-center">
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type ErrorBoundaryProps } from "@pylonsync/react";
|
|
3
3
|
|
|
4
|
-
// `app/error.tsx` → the error boundary
|
|
5
|
-
// `
|
|
6
|
-
//
|
|
4
|
+
// `app/error.tsx` → the GLOBAL error boundary. Sitting at the app root
|
|
5
|
+
// (outside the `(chat)` group), it catches a throw from any section — the chat
|
|
6
|
+
// or /login — and renders at HTTP 500 in the bare root shell. Hydrated +
|
|
7
|
+
// interactive: `reset()` re-attempts the route. The thrown error reaches the
|
|
8
|
+
// client as `{ message, digest }` only — the stack stays in the dev overlay /
|
|
9
|
+
// server logs.
|
|
7
10
|
export default function Error({ error, reset }: ErrorBoundaryProps) {
|
|
8
11
|
return (
|
|
9
12
|
<div className="mx-auto flex min-h-[60vh] max-w-3xl flex-col items-center justify-center px-6 text-center">
|
|
@@ -1,24 +1,15 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { Link, type PageAuth } from "@pylonsync/react";
|
|
3
2
|
import { siteConfig } from "@/lib/site.config";
|
|
4
3
|
|
|
5
|
-
//
|
|
6
|
-
//
|
|
7
|
-
//
|
|
8
|
-
// viewport (h-[calc(100vh-3.5rem)] in chat-client.tsx — keep the header at h-14).
|
|
4
|
+
// The root layout is only the document shell: <html>, <head>, <body>, and the
|
|
5
|
+
// theme variables. The app shell (top bar) lives in the `(chat)` route-group
|
|
6
|
+
// layout, so /login — outside the group — renders bare with its own chrome.
|
|
9
7
|
interface LayoutProps {
|
|
10
8
|
children: React.ReactNode;
|
|
11
|
-
url: string;
|
|
12
|
-
auth: PageAuth;
|
|
13
9
|
}
|
|
14
10
|
|
|
15
|
-
export default function RootLayout({ children
|
|
16
|
-
const
|
|
17
|
-
const { brand, colors } = siteConfig;
|
|
18
|
-
|
|
19
|
-
// The auth screen brings its own chrome → render it bare.
|
|
20
|
-
const path = (url ?? "").split("?")[0];
|
|
21
|
-
const isBare = path === "/login" || path.startsWith("/login/");
|
|
11
|
+
export default function RootLayout({ children }: LayoutProps) {
|
|
12
|
+
const { colors } = siteConfig;
|
|
22
13
|
|
|
23
14
|
return (
|
|
24
15
|
<html
|
|
@@ -40,31 +31,7 @@ export default function RootLayout({ children, url, auth }: LayoutProps) {
|
|
|
40
31
|
no layout shift; change the family in app.ts. */}
|
|
41
32
|
</head>
|
|
42
33
|
<body className="bg-background text-foreground antialiased">
|
|
43
|
-
{
|
|
44
|
-
children
|
|
45
|
-
) : (
|
|
46
|
-
<>
|
|
47
|
-
<header className="flex h-14 items-center justify-between border-b border-zinc-200 bg-white px-4">
|
|
48
|
-
<Link href="/" className="flex items-center gap-2">
|
|
49
|
-
<span className="flex size-6 items-center justify-center rounded-[7px] bg-brand text-[13px] font-bold text-white">
|
|
50
|
-
{brand.letter}
|
|
51
|
-
</span>
|
|
52
|
-
<span className="text-[15px] font-semibold tracking-tight text-zinc-900">{brand.name}</span>
|
|
53
|
-
</Link>
|
|
54
|
-
{signedIn ? (
|
|
55
|
-
<span className="text-[13px] text-zinc-400">Signed in</span>
|
|
56
|
-
) : (
|
|
57
|
-
<Link
|
|
58
|
-
href="/login"
|
|
59
|
-
className="rounded-full border border-zinc-300 px-3.5 py-1.5 text-[13px] font-medium text-zinc-700 transition-colors hover:bg-zinc-50"
|
|
60
|
-
>
|
|
61
|
-
Sign in
|
|
62
|
-
</Link>
|
|
63
|
-
)}
|
|
64
|
-
</header>
|
|
65
|
-
{children}
|
|
66
|
-
</>
|
|
67
|
-
)}
|
|
34
|
+
{children}
|
|
68
35
|
</body>
|
|
69
36
|
</html>
|
|
70
37
|
);
|
|
@@ -9,7 +9,8 @@ export const metadata: Metadata = {
|
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
// `app/login/page.tsx` → `/login`. Sign-in is required to use the chat (chats
|
|
12
|
-
// are tied to your account).
|
|
12
|
+
// are tied to your account). It sits outside the `(chat)` route group, so it
|
|
13
|
+
// renders bare — no app top bar. Already signed in? Skip back to the
|
|
13
14
|
// chat — `response.redirect` in the synchronous shell render is a real 307
|
|
14
15
|
// before any HTML is sent.
|
|
15
16
|
export default function LoginPage({ auth, response }: PageProps) {
|
|
@@ -6,7 +6,7 @@ Pylon serves the API, auth, sync, WebSocket, SSE, and native React 19 SSR from o
|
|
|
6
6
|
|
|
7
7
|
**Unified SSR app:**
|
|
8
8
|
- `app.ts`: data model + manifest (`entity()` + `field.*`, queries/actions/policies, `routes: await discoverAppRoutes()`). Ends with `console.log(JSON.stringify(manifest))`.
|
|
9
|
-
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. `app/layout.tsx` is the shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
9
|
+
- `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. A `(group)` directory is stripped from the URL — `app/(marketing)/about/page.tsx` still serves `/about` — so a group's `layout.tsx` gives one section its own chrome (nav, footer) without changing any path; routes outside the group render without it. `app/layout.tsx` is the document shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
|
|
10
10
|
- `app/globals.css`: Tailwind v4 entrypoint (auto-compiled and injected).
|
|
11
11
|
- `functions/`: server functions, one per file, `default`-exported.
|
|
12
12
|
- `.pylon/`: local dev state (SQLite, jobs, sessions, uploads). Created by `pylon dev`. Do not commit.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Link, type PageAuth } from "@pylonsync/react";
|
|
3
|
+
import { siteConfig } from "@/lib/site.config";
|
|
4
|
+
|
|
5
|
+
// `(studio)` is a ROUTE GROUP: the parens segment is stripped from every URL
|
|
6
|
+
// (so `(studio)/page.tsx` still serves `/`), and this layout wraps only the
|
|
7
|
+
// pages inside the group. /login sits outside it and renders bare in the
|
|
8
|
+
// root shell.
|
|
9
|
+
//
|
|
10
|
+
// App shell: a slim top bar over the studio. `auth.user_id` is resolved
|
|
11
|
+
// server-side from the session cookie before any HTML is sent, so the bar shows
|
|
12
|
+
// the account / "Sign in" with no flash. The header is h-14; the studio page
|
|
13
|
+
// fills the rest of the viewport (min-h-[calc(100vh-3.5rem)]).
|
|
14
|
+
interface LayoutProps {
|
|
15
|
+
children: React.ReactNode;
|
|
16
|
+
auth: PageAuth;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default function StudioLayout({ children, auth }: LayoutProps) {
|
|
20
|
+
const signedIn = Boolean(auth?.user_id);
|
|
21
|
+
const { brand } = siteConfig;
|
|
22
|
+
|
|
23
|
+
return (
|
|
24
|
+
<>
|
|
25
|
+
<header className="flex h-14 items-center justify-between border-b border-zinc-200 bg-white px-4">
|
|
26
|
+
<Link href="/" className="flex items-center gap-2">
|
|
27
|
+
<span className="flex size-6 items-center justify-center rounded-[7px] bg-brand text-[13px] font-bold text-white">
|
|
28
|
+
{brand.letter}
|
|
29
|
+
</span>
|
|
30
|
+
<span className="text-[15px] font-semibold tracking-tight text-zinc-900">{brand.name}</span>
|
|
31
|
+
</Link>
|
|
32
|
+
{signedIn ? (
|
|
33
|
+
<span className="text-[13px] text-zinc-400">Signed in</span>
|
|
34
|
+
) : (
|
|
35
|
+
<Link
|
|
36
|
+
href="/login"
|
|
37
|
+
className="rounded-full border border-zinc-300 px-3.5 py-1.5 text-[13px] font-medium text-zinc-700 transition-colors hover:bg-zinc-50"
|
|
38
|
+
>
|
|
39
|
+
Sign in
|
|
40
|
+
</Link>
|
|
41
|
+
)}
|
|
42
|
+
</header>
|
|
43
|
+
{children}
|
|
44
|
+
</>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { Link, type NotFoundProps } from "@pylonsync/react";
|
|
3
3
|
|
|
4
|
-
// `
|
|
5
|
-
// page calls `response.notFound()`).
|
|
4
|
+
// `(studio)/not-found.tsx` → rendered at HTTP 404 for any unmatched URL (and
|
|
5
|
+
// when a page calls `response.notFound()`). It lives inside the `(studio)`
|
|
6
|
+
// group on purpose: a group segment adds no URL prefix, so this is still the
|
|
7
|
+
// root 404 boundary, but it wraps in the app-shell layout — a missing URL gets
|
|
8
|
+
// the top bar instead of a bare page. Hydrated, so the link is a client nav.
|
|
6
9
|
export default function NotFound(_props: NotFoundProps) {
|
|
7
10
|
return (
|
|
8
11
|
<div className="mx-auto flex min-h-[60vh] max-w-3xl flex-col items-center justify-center px-6 text-center">
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type ErrorBoundaryProps } from "@pylonsync/react";
|
|
3
3
|
|
|
4
|
-
// `app/error.tsx` → the error boundary
|
|
5
|
-
// `
|
|
6
|
-
//
|
|
4
|
+
// `app/error.tsx` → the GLOBAL error boundary. Sitting at the app root
|
|
5
|
+
// (outside the `(studio)` group), it catches a throw from any section — the
|
|
6
|
+
// studio or /login — and renders at HTTP 500 in the bare root shell. Hydrated +
|
|
7
|
+
// interactive: `reset()` re-attempts the route. The thrown error reaches the
|
|
8
|
+
// client as `{ message, digest }` only — the stack stays in the dev overlay /
|
|
9
|
+
// server logs.
|
|
7
10
|
export default function Error({ error, reset }: ErrorBoundaryProps) {
|
|
8
11
|
return (
|
|
9
12
|
<div className="mx-auto flex min-h-[60vh] max-w-3xl flex-col items-center justify-center px-6 text-center">
|