A comprehensive platform for freelancers and virtual assistants to connect, collaborate, and grow their businesses.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── auth.ts # Authentication endpoints
│ │ ├── jobs.ts # Job posting endpoints
│ │ ├── profiles.ts # User profile endpoints
│ │ └── chat.ts # Chat/messaging endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── JobBoard.tsx # Job listings and posting
│ │ ├── ProfileCard.tsx # User profile display
│ │ ├── Chat.tsx # Real-time chat component
│ │ └── Navigation.tsx # App navigation
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript interfaces
The application is automatically deployed on Val Town. Access the main interface through the HTTP endpoint.