A web application for showcasing AI projects from the community. Users can submit their AI projects and browse through all submitted projects.
├── 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