import React from 'react'; import { motion } from 'framer-motion'; import { COLLECTIONS } from '../constants'; const Collections: React.FC = () => { return ( <>
{/* Header */}
Collections Curated series of functional objects. Each collection explores a distinct form language and glaze palette.
{/* Grid */}
{COLLECTIONS.map((item, index) => ( {/* Image Container with Darker Background for Contrast */}
{/* Overlay on hover */}
{item.number}

{item.title}

arrow_forward
))}
); }; export default Collections;