A platform where users can view job postings and chat about them in real-time.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── jobs.ts # Job posting endpoints
│ │ └── chat.ts # Chat endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── JobList.tsx # Job listings
│ │ ├── JobDetail.tsx # Individual job view
│ │ └── Chat.tsx # Chat component
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types