"use client"; import { H2, P, CP } from "@/components/Texts"; import { Button } from "@/components/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", buttonText: "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 buttonText: "Explore", }, { title: "Mycelium Support", description: "Need help? Reach out to our support team or join the community to get your questions answered quickly.", href: "/support", buttonText: "Support", }, ]; return (

Get Started

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

{items.map((item, idx) => (
{ e.currentTarget.style.filter = 'brightness(0.8)'; }} onMouseLeave={(e) => { e.currentTarget.style.filter = 'brightness(1)'; }} > {/* Title + Button Row */}

{item.title}

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