import { Link } from '@tanstack/react-router'; import { ChevronRight } from 'lucide-react'; interface ShelfRowProps { title: string; viewAllTo?: string; children: React.ReactNode; } export function ShelfRow({ title, viewAllTo, children }: ShelfRowProps) { return (

{title}

{viewAllTo && ( View all )}
{children}
); }