This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Next.js 16 frontend application using the App Router pattern. Built with React 19, TypeScript (strict mode), and Tailwind CSS 4.
npm run dev # Start development server at localhost:3000
npm run build # Create production build
npm start # Run production server
npm run lint # Run ESLint- App Router: Uses
/appdirectory with file-based routing (page.tsx, layout.tsx) - Styling: Tailwind CSS with CSS variables for theming; dark mode via prefers-color-scheme
- Fonts: Geist font family (sans & mono) via next/font
- Path alias:
@/*maps to project root
app/layout.tsx- Root layout with metadata and global font configurationapp/page.tsx- Home page componentapp/globals.css- Global styles and CSS custom properties for theming