import { ChevronRight } from "lucide-react"; import { Link } from "react-router-dom"; export function SectionHeader({ title, viewAllTo, viewAllLabel, }: { title: string; viewAllTo?: string; viewAllLabel?: string; }) { return (

{title}

{viewAllTo && viewAllLabel ? ( {viewAllLabel} ) : null}
); }