Demo Page
This page shows the core wiring of the template:
- Server component renders this markdown via
react-markdown+remark-gfm - Shiki highlights code blocks server-side
- React Query fetches
/api/items - React Hook Form + Zod validates the "Add item" form
- better-auth session is read on the server below
Code sample
export function getGreeting(name: string): string { return `Hello, ${name}!`; }
Tip: copy this page as a starting point for real features.