import React, { useEffect } from "react"; import { Box, Container, Typography, Button, Grid, Card, Paper, Divider, } from "@mui/material"; import { useNavigate } from "react-router-dom"; import { Category } from "./types"; import chairone from "../images/chairone.png"; import chairtwo from "../images/chairtwo.png"; import chairthree from "../images/chairthree.png"; import carimage from "../images/caraone.png"; export const categories: Category[] = [ { id: "chairs", name: "Premium Seating Collection", image: `${chairone}`, description: "Ergonomic masterpieces combining comfort and style", count: 28, }, { id: "luxurychairs", name: "Luxury Chairs", image: `${chairtwo}`, description: "Ergonomic designs for modern living", count: 28, }, { id: "Premium Beds", name: "Premium Beds", image: `${chairthree}`, description: "Sleep in ultimate comfort", count: 15, }, { id: "DesignerSofas", name: "Designer Sofas", image: `${chairone}`, description: "Centerpieces for your living room", count: 22, }, { id: "ElegantLighting", name: "Elegant Lighting", image: `${chairthree}`, description: "Illuminate with style", count: 34, }, { id: "ModernTables", name: "Modern Tables", image: `${chairtwo}`, description: "Functional art for your home", count: 19, }, { id: "HomeDecor", name: "Home Decor", image: `${chairone}`, description: "Complete your interior design", count: 42, }, ]; const CategoryPage = () => { const navigate = useNavigate(); return ( {/* Hero Section */} Crafted for Comfort, Designed for Life Discover furniture that transforms your space {/* About Section */} Our Craftsmanship Philosophy At Panto, we believe furniture should be both beautiful and functional. Each piece in our collection is meticulously crafted by skilled artisans using sustainable materials and time-honored techniques. Our designers work closely with ergonomic specialists to create pieces that don't just look good, but feel good to use every day. From the carefully selected fabrics to the precision joinery, every detail matters. We source our materials from responsible suppliers, ensuring that our environmental impact is minimized. The hardwoods in our furniture come from FSC-certified forests, and our fabrics are OEKO-TEX certified. With over 15 years in the industry, we've perfected the balance between form and function, offering designs that stand the test of time both in durability and style. {/* Category Grid */} Explore Our Collections Each collection tells a unique design story {categories.map((category) => ( {category.name} {category.description} ))} {/* Testimonials */} What Our Customers Say {[ "The most comfortable chair I've ever owned - worth every penny!", "Transformed my living room completely. The quality is exceptional.", "Best furniture purchase I've made in years. Stunning and sturdy.", ].map((quote, i) => ( "{quote}" — Happy Customer ))} ); }; export default CategoryPage;