import Link from "next/link"; import type React from "react"; import { cn } from "../../lib/utils"; export function CardGrid({ children }: { children: React.ReactNode }) { return
{children}
; } export function Card({ title, children, }: { title?: string; children: React.ReactNode; }) { return (
{title ? (

{title}

) : null} {children}
); } export function LinkCard({ title, href, description, }: { title: string; href: string; description?: string; }) { const isExternal = href.startsWith("http"); return ( {title} {description ? ( {description} ) : null} ); }