Company Reviews App

A full-stack application for sharing and browsing company reviews.

Features

  • Submit company reviews with ratings and detailed feedback
  • Browse all company reviews
  • Search and filter reviews by company name
  • Rate companies on multiple criteria (work-life balance, compensation, culture, etc.)
  • Anonymous review submission

Project Structure

├── 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

Tech Stack

  • Backend: Hono (TypeScript API framework)
  • Database: SQLite
  • Frontend: React with TypeScript
  • Styling: TailwindCSS
  • Deployment: Val Town

API Endpoints

  • GET /api/reviews - Get all reviews with optional search/filter
  • POST /api/reviews - Submit a new review
  • GET /api/companies - Get list of companies with review counts

Getting Started

The app is automatically deployed on Val Town. Visit the main URL to start browsing and submitting company reviews.