import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Card, CardContent } from "@/components/ui/card"; import Image from "next/image"; const collections = [ { title: "Women Collection", description: "Everyday Soft Luxury. Clean, relaxed silhouettes with gentle structure and breathable fabrics.", image: "https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=800&auto=format&fit=crop", link: "#women" }, { title: "Kids Collection", description: "Gentle by Nature. Ultra-soft, skin-friendly fabrics designed for movement and comfort.", image: "https://images.unsplash.com/photo-1519704943920-18447022ad7d?q=80&w=800&auto=format&fit=crop", link: "#kids" } ]; export function Collections() { return (
The Collections
{collections.map((item) => (
{item.title}
{item.title}

{item.description}

Explore
))}
); }