import { ArrowUpRight, Mail } from "lucide-react"; import Link from "next/link"; import { Button } from "@/components/ui/button"; import { AppCard } from "@/components/ui/app-card"; import type { ContactCtaSectionCopy } from "./types"; type ContactCtaSectionProps = { copy: ContactCtaSectionCopy; contactHref: string; }; export function ContactCtaSection({ copy, contactHref, }: ContactCtaSectionProps) { return (

{copy.eyebrow}

{copy.title}

{copy.description}

{copy.emailLabel}

{copy.emailValue}

{copy.availabilityLabel}

{copy.availabilityValue}

); }