export default function LightClosetsHomepage() { const categories = [ { title: 'Luxury Formals', image: 'https://images.unsplash.com/photo-1529139574466-a303027c1d8b?q=80&w=1200&auto=format&fit=crop', }, { title: 'Ready To Wear', image: 'https://images.unsplash.com/photo-1496747611176-843222e1e57c?q=80&w=1200&auto=format&fit=crop', }, { title: 'Unstitched', image: 'https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?q=80&w=1200&auto=format&fit=crop', }, { title: 'Eid Collection', image: 'https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1200&auto=format&fit=crop', }, ]; const products = [ { title: 'Emerald Luxury Suit', price: '£89', image: 'https://images.unsplash.com/photo-1521572267360-ee0c2909d518?q=80&w=1200&auto=format&fit=crop', }, { title: 'Pastel Embroidered Dress', price: '£74', image: 'https://images.unsplash.com/photo-1495385794356-15371f348c31?q=80&w=1200&auto=format&fit=crop', }, { title: 'Classic Eid Collection', price: '£99', image: 'https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?q=80&w=1200&auto=format&fit=crop', }, ]; return (
{/* Header */}

Light Closets

{/* Hero */}
Fashion Hero

Luxury Pakistani Fashion

Eid Collection 2026

Discover premium eastern wear designed for elegance, comfort, and timeless style.

{/* Categories */}

Categories

Shop By Collection

{categories.map((item, index) => (
{item.title}

{item.title}

))}
{/* Featured Products */}

Featured Products

Trending This Week

{products.map((product, index) => (
{product.title}

{product.title}

{product.price}

))}
{/* Brand Section */}
Brand Story

About Brand

Designed For Modern Eastern Fashion

Light Closets combines luxury Pakistani fashion with modern ecommerce experience. From festive wear to elegant everyday collections, we deliver timeless eastern outfits for women across the UK and beyond.

{/* Newsletter */}

Join Community

Get Exclusive Launch Offers

{/* Footer */}
); }