import Image from "next/image" import Link from "next/link" import { motion } from "framer-motion" import { Collection } from "../data/collections" interface CollectionsProps { collections: Collection[] } export default function Collections({ collections }: CollectionsProps) { return (

Коллекции

{collections.map((collection, index) => (
{collection.name}

{collection.name}

{collection.description}

Смотреть коллекцию
))}
) }