100## Codebase Structure
101
102This project extends Val Town's recommended approach for using Hono and React together (https://www.val.town/x/std/reactHonoStarter) with additional enterprise features.
103
104```
111โ โ โโโ views/ # HTML page serving
112โ โโโ index.ts # Main Hono application entry point
113โโโ frontend/ # Client-side React application
114โ โโโ components/ # React components
115โ โโโ index.html # Main HTML template
116โ โโโ index.tsx # Frontend JavaScript entry point
125### Frontend (`/frontend`)
126
127React-based user interface with Tailwind CSS styling. Includes the main demo interface, cobrowsing integration, and interactive components.
128
129### Shared (`/shared`)
138- **Blob Storage**: Val Town's built-in caching solution for performance optimization
139- **Cron Jobs**: Scheduled tasks to maintain cache freshness
140- **React/JSX**: Frontend interface templates with TypeScript
141- **Tailwind CSS**: Utility-first CSS framework for styling
142
143## Technical Implementation
144
145### React Frontend
146
147The frontend uses React 18.2.0 with JSX import source configuration:
148
149```typescript
150/** @jsxImportSource https://esm.sh/react@18.2.0 */
151```
152
153All React dependencies are pinned to ensure compatibility across the platform.
154
155### Hono Backend Routes