For AI agents: the complete documentation index is available at /examples/kitchen-sink/llms.txt, the full documentation bundle is available at /examples/kitchen-sink/llms-full.txt, and this page is available as Markdown at /examples/kitchen-sink/apps/web/overview.md.

Web

The web app is a Next.js application that serves the Acme Platform frontend.

Stack

ToolPurpose
Next.js 15Framework
React 19UI library
TailwindStyling
@acme/uiShared components
@acme/dbServer-side data access

Directory structure

apps/web
src
app# App router pages
components# App-specific components
lib# Utilities and helpers
public# Static assets
next.config.ts

Key patterns

  • Server components by default, "use client" only when needed
  • Server actions for mutations instead of API routes
  • Parallel routes for modals and side panels
  • Streaming with Suspense boundaries for loading states