import React from "react"; import { Box, Container, Typography, Grid, Card, Button, Paper, Divider, } from "@mui/material"; import { useParams, Link } from "react-router-dom"; import { Product } from "./types"; import chairone from "../images/chairone.png"; import chairtwo from "../images/chairtwo.png"; import chairthree from "../images/chairthree.png"; const collectionItems: Record = { chairs: [ { id: "ergo-luxe", name: "Ergo-Luxe Executive Chair", price: "$499", image: `${chairone}`, description: "Premium ergonomic support with breathable mesh back", details: [ "Adjustable lumbar support", "Tilt tension control", "Waterfall seat edge", "Dimensions: 27.5″D x 27″W x 40-44″H", "Weight capacity: 350 lbs", ], features: [ "Lumbar support with 3 adjustment points", "Tilt lock mechanism", "Certified sustainable materials", ], }, { id: "cloud-comfort", name: "Cloud Comfort Chair", price: "$349", image: `${chairtwo}`, description: "Plush seating with exceptional support", details: [ "High-density foam cushioning", "360-degree swivel", "Nylon base with dual-wheel casters", ], features: [ "Breathable fabric upholstery", "Easy assembly", "Modern minimalist design", ], }, ], "luxury-chairs": [ { id: "velvet-throne", name: "Velvet Throne Armchair", price: "$899", image: `${chairthree}`, description: "Opulent seating with premium velvet upholstery", details: [ "Solid walnut legs", "Hand-tufted detailing", "Dimensions: 32″D x 36″W x 34″H", ], features: [ "Premium Italian velvet", "Handcrafted construction", "Limited edition", ], }, ], "premium-beds": [ { id: "serenity-sleep", name: "Serenity Sleep King Bed", price: "$2,499", image: `${chairone}`, description: "Ultimate sleep system with premium materials", details: [ "Solid hardwood frame", "Integrated slat system", "Dimensions: 80″W x 76″L x 42″H", ], features: [ "No-squeak construction", "Eco-friendly finishes", "10-year warranty", ], }, ], // Add more collections as needed }; const CollectionPage = () => { const { collectionId } = useParams<{ collectionId: string }>(); const collection = collectionId ? collectionItems[collectionId] || [] : []; return ( {/* Collection Hero */} {collectionId} Collection {collection.length} premium designs available {/* Collection Description */} About This Collection Our {collectionId} collection represents the pinnacle of design and craftsmanship. Each piece is created with meticulous attention to detail, using only the finest materials sourced from sustainable suppliers. From the initial sketches to the final quality inspection, every step in our process is carefully monitored to ensure exceptional quality and durability that will last for generations. Collection Highlights {[ "Handcrafted by skilled artisans", "Sustainable materials", "5-year craftsmanship warranty", "Free design consultation available", ].map((item, i) => ( {item} ))} {/* Products Grid */} Featured {collectionId} Browse our curated selection {collection.map((product) => ( {product.name} {product.description} {product.details?.map((detail, i) => ( {detail} ))} {product.price} ))} ); }; export default CollectionPage;