"use client"; import { ExternalLinkIcon, LucideIcon } from "lucide-react"; import Link from "next/link"; import { Button } from "@/components/shadcn"; import { CustomLink } from "@/components/ui/custom/custom-link"; import { Card, CardContent, CardHeader } from "../../shadcn"; interface LinkCardProps { icon: LucideIcon; title: string; description: string; learnMoreUrl: string; learnMoreAriaLabel: string; bodyText: string; linkHref: string; linkText: string; } export const LinkCard = ({ icon: Icon, title, description, learnMoreUrl, learnMoreAriaLabel, bodyText, linkHref, linkText, }: LinkCardProps) => { return (

{title}

{description}

Learn more

{bodyText}

); };