A comprehensive career coaching platform featuring blogs, public chat, and appointment booking.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── blog.ts # Blog API endpoints
│ │ ├── chat.ts # Chat API endpoints
│ │ └── appointments.ts # Booking API endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── Blog.tsx # Blog section
│ │ ├── Chat.tsx # Chat room
│ │ └── Booking.tsx # Appointment booking
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types
The application is automatically deployed on Val Town. Visit the HTTP endpoint to access the website.