app/:
- Server Components by default; opt into
"use client"only when you need browser APIs, matching the guidance instarter-kit/SPECS.md. - Reuse shared layouts (e.g.,
(auth)/layout.tsx) to pick up consistent headers, footers, and providers. - When wiring server actions, lean on the established
encodedRedirecthelpers and timeout handling showcased inapp/actions.ts.
Related Topics
App Configuration
Add custom pages to navigation and configure routing
Component Library
Use pre-built components in your custom pages
Branding & Styling
Apply consistent branding to custom pages
Theme Configuration
Ensure custom pages support dark mode

