Redesign marketing pages and isolate public routes from app auth.

Give the landing, legal, and sign-in flows a consistent product shell while keeping marketing pages free of tRPC/session calls, fixing dev auth URL handling, and refreshing env and deploy docs.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-26 02:00:06 -04:00
co-authored by Cursor
parent 82977b6dd8
commit 6ec26a4a0d
36 changed files with 1743 additions and 819 deletions
+2 -2
View File
@@ -16,11 +16,11 @@ const config = {
experimental: {
webpackMemoryOptimizations: true,
},
// Skip duplicate typecheck/eslint during Docker `next build` to lower peak memory.
// Skip duplicate typecheck during Docker `next build` to lower peak memory.
// Lint separately via `bun run lint` / `bun run check`.
...(isDockerBuild
? {
typescript: { ignoreBuildErrors: true },
eslint: { ignoreDuringBuilds: true },
}
: {}),
};