A full-stack grocery delivery application built with Hono backend and React frontend.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema and sample data
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── products.ts # Product API endpoints
│ │ └── orders.ts # Order/checkout endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── ProductGrid.tsx # Product display grid
│ │ ├── Cart.tsx # Shopping cart component
│ │ └── Checkout.tsx # Checkout form
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types