interface RoadmapItem {
quarter: string;
milestones: string[];
}
const q1Roadmap: RoadmapItem = {
quarter: "Q1 2025: Laying the Foundation",
milestones: [
"Launch MVP with core features: business profiles, problem-solution matching, and networking tools.",
"Start building the community with the first 200 users on Bluesky and X.",
"Collect early user feedback to shape the product direction.",
],
};
export default q1Roadmap;