"use client"; import { motion } from "motion/react"; import { TitleCard } from "@/components/title-card"; import type { RecommendedTitle } from "@/lib/types/title"; const staggerContainer = { hidden: {}, visible: { transition: { staggerChildren: 0.05 } }, }; const staggerItem = { hidden: { opacity: 0, y: 12, scale: 0.98 }, visible: { opacity: 1, y: 0, scale: 1, transition: { type: "spring" as const, stiffness: 300, damping: 24 }, }, }; export function RecommendationsGrid({ recommendations, }: { recommendations: RecommendedTitle[]; }) { return (

Recommended

{recommendations.slice(0, 12).map((rec) => ( ))}
); }