Fusion Starter
Tech Stack
Project Structure
client/ # React SPA frontend
├── pages/ # Route components (Index.tsx = home)
├── components/ui/ # Pre-built UI component library
├── App.tsx # App entry point and with SPA routing setup
└── global.css # TailwindCSS 3 theming and global styles
server/ # Express API backend
├── index.ts # Main server setup (express config + routes)
└── routes/ # API handlers
shared/ # Types used by both client & server
└── api.ts # Example of how to share api interfacesKey Features
SPA Routing System
Styling System
Express Server Integration
Example API Routes
Shared Types
Development Commands
Adding Features
Add new colors to the theme
New API Route
New Page Route
Production Deployment
Architecture Notes
Last updated
