Back to Featured Projects

Startup Database

I want to create a one page website called startup db that has a list of startup ideas. Each idea is of this interface:export interface StartupIdea { id: string; // unique identifier (uuid/nanoid) name: string; // idea name oneLiner: string; // short description category: string; // e.g., SaaS, AI, Fintech problem: string; // the core pain point solution: string; // how the idea solves it monetization: string; // revenue model difficulty: "easy" | "medium" | "hard"; // build/launch difficulty requiredSkills: string[]; // skills needed to build mvpFeatures: string[]; // minimum viable features createdAt: string; // ISO date string} The ideas are stored statically in the code. no db or backend needed. The page ui needs to look modern and minimalistic. Copy https://roadmap.sh/projects for the ui

Created bymahmoud-nfz
Open Live Demo
Startup Database