Real Estate App

A comprehensive real estate application that allows users to:

  • Post job apartments and land listings
  • Browse and search properties
  • Participate in a public chat room to discuss properties
  • View property details and contact information

Project Structure

├── backend/
│   ├── database/
│   │   ├── migrations.ts    # Database schema setup
│   │   └── queries.ts       # Database query functions
│   ├── routes/
│   │   ├── properties.ts    # Property CRUD operations
│   │   └── chat.ts          # Chat functionality
│   └── index.ts             # Main Hono server
├── frontend/
│   ├── components/
│   │   ├── App.tsx          # Main app component
│   │   ├── PropertyList.tsx # Property listings
│   │   ├── PropertyForm.tsx # Add/edit property form
│   │   ├── PropertyCard.tsx # Individual property display
│   │   └── ChatRoom.tsx     # Public chat component
│   ├── index.html           # Main HTML template
│   └── index.tsx            # Frontend entry point
└── shared/
    └── types.ts             # Shared TypeScript types

Features

  • Property Management: Add, view, edit, and delete property listings
  • Property Types: Support for apartments, houses, and land
  • Search & Filter: Filter properties by type, price range, and location
  • Public Chat: Real-time chat room for discussing properties
  • Responsive Design: Mobile-friendly interface using TailwindCSS

Tech Stack

  • Backend: Hono.js with SQLite database
  • Frontend: React with TypeScript
  • Styling: TailwindCSS
  • Storage: Val Town SQLite and Blob storage