import { ArrowUpRight } from "lucide-react"; import { motion } from "framer-motion"; import Image from "next/image"; import { business } from "@/config/business"; import type { Messages } from "@/messages"; import AnimatedSection from "./AnimatedSection"; import SectionHeader from "./SectionHeader"; const collectionImages = [ business.assets.prescriptionGlasses, business.assets.sunglasses, business.assets.kidsGlasses, business.assets.budgetFrames ]; export default function CollectionsSection({ t }: { t: Messages }) { return (
{t.collections.items.map((item, index) => ( {`${business.name}
0{index + 1}

{item.title}

{item.text}

))}
); }