Community_AI_Project_Showcase
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
index.ts
https://ianochieng--371aa5523fb711f0948076b3cceeab13.web.val.run
A web application for showcasing AI projects from the community. Users can submit their AI projects and browse through all submitted projects.
- Submit AI projects with title, description, link, and category
- Browse all submitted projects in a card-based layout
- Categories include: Machine Learning, NLP, Computer Vision, Generative AI, Data Science, Robotics, Other AI
- Responsive design with TailwindCSS
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ └── projects.ts # Project API routes
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React app
│ │ ├── ProjectForm.tsx # Project submission form
│ │ └── ProjectCard.tsx # Individual project display
│ ├── index.html # HTML template
│ └── index.tsx # React entry point
└── shared/
└── types.ts # Shared TypeScript types
GET /
- Serves the main applicationGET /api/projects
- Get all projectsPOST /api/projects
- Submit a new project
- Backend: Hono + SQLite
- Frontend: React + TailwindCSS
- Database: SQLite
- Styling: TailwindCSS via Twind