"use client"; import { H2, P, CP } from "@/components/Texts"; import { Button } from "@/components/ui/Button"; export function GetStarted() { const items = [ { title: "Mycelium Docs", description: "Learn how Mycelium works and get a high-level understanding of its architecture, deployment, and API references.", href: "/docs", }, { title: "Mycelium Repository", description: "Explore the official code repositories, contribute, and stay up-to-date with the latest changes.", href: "https://github.com/your-repo", // replace with actual repo }, { title: "Mycelium Support", description: "Need help? Reach out to our support team or join the community to get your questions answered quickly.", href: "/support", }, ]; return (

Get Started

Explore the documentation, code, and support channels to start building with Mycelium Cloud.

{items.map((item, idx) => (
{/* Title + Button Row */}

{item.title}

{/* Divider + Description */}
{item.description}
))}
); }