A complete, responsive eCommerce website built with Hono backend and React frontend, styled with TailwindCSS.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── products.ts # Product CRUD
│ │ ├── cart.ts # Cart operations
│ │ ├── orders.ts # Order management
│ │ └── admin.ts # Admin operations
│ └── index.ts # Main server entry
├── frontend/
│ ├── components/
│ │ ├── layout/ # Navigation, footer, layout
│ │ ├── pages/ # Page components
│ │ ├── ui/ # Reusable UI components
│ │ └── App.tsx # Main app component
│ ├── index.html # HTML template
│ └── index.tsx # Frontend entry point
└── shared/
├── types.ts # Shared TypeScript types
└── utils.ts # Shared utilities
GET /
- HomepageGET /api/products
- Product listing with filtersGET /api/products/:id
- Product detailsPOST /api/auth/login
- User authenticationPOST /api/cart
- Cart operationsPOST /api/orders
- Order placementGET /admin/*
- Admin dashboard (protected)