A full-stack application for sharing and browsing company reviews.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ └── routes/
│ └── reviews.ts # Review API endpoints
│ ├── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React app
│ │ ├── ReviewForm.tsx # Form for submitting reviews
│ │ ├── ReviewList.tsx # Display list of reviews
│ │ └── ReviewCard.tsx # Individual review display
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
GET /api/reviews - Get all reviews with optional search/filterPOST /api/reviews - Submit a new reviewGET /api/companies - Get list of companies with review countsThe app is automatically deployed on Val Town. Visit the main URL to start browsing and submitting company reviews.