import { ArrowRight } from "lucide-react"; import { TrackedCtaLink } from "@/components/marketing/MarketingAnalytics"; import { Card } from "@/components/ui/Card"; type PageType = "commercial" | "use_case_hub" | "use_case"; type GrowthLink = { href: string; title: string; description: string; ctaLabel: string; }; export function GrowthLinksSection({ eyebrow, title, description, links, pageType, cluster, useCase, }: { eyebrow: string; title: string; description: string; links: GrowthLink[]; pageType: PageType; cluster: string; useCase?: string; }) { return (
{eyebrow}

{title}

{description}

{links.map((link) => (
{link.title}

{link.description}

Open workflow
))}
); }