home 2

“use client”; import { useState } from “react”; import { Button } from “/components/ui/button”; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from “/components/ui/card”; import { Input } from “/components/ui/input”; import { Menu, X, Search, ShoppingBag, User, Heart, ArrowRight } from “lucide-react”; export default function MensFashionHomePage() { const [isMenuOpen, setIsMenuOpen] = useState(false); const categories = [ { name: “Suits & Blazers”, description: “Tailored perfection for every occasion” }, { name: “Shirts”, description: “From casual to formal, find your perfect fit” }, { name: “Trousers”, description: “Comfort and style in every pair” }, { name: “Accessories”, description: “Complete your look with premium accessories” } ]; const featuredProducts = [ { name: “Classic Navy Suit”, price: “$399”, description: “Premium wool blend with modern cut” }, { name: “Signature Dress Shirt”, price: “$89”, description: “Non-iron cotton with perfect fit” }, { name: “Leather Dress Shoes”, price: “$249”, description: “Handcrafted Italian leather” }, { name: “Premium Watch”, price: “$299”, description: “Swiss movement with sapphire crystal” } ]; return (
{/* Header */}
{/* Logo */}

ELEGANCE

{/* Desktop Navigation */} {/* Right side icons */}
{/* Mobile menu button */}
{/* Mobile Navigation */} {isMenuOpen && ( )}
{/* Hero Section */}

Elevate Your Style with Timeless Elegance

Discover premium menswear crafted with precision and attention to detail. From boardroom to evening wear, we’ve got you covered.

Professional male model wearing a tailored navy suit with crisp white shirt and leather shoes in a modern studio setting
{/* Categories Section */}

Shop by Category

Explore our curated collections designed for the modern gentleman

{categories.map((category, index) => ( {`Collection {category.name} {category.description} ))}
{/* Featured Products */}

Featured Products

Discover our most popular items this season

{featuredProducts.map((product, index) => (
{`${product.name}

{product.name}

{product.description}

{product.price}
))}
{/* Brand Story */}
Interior of a modern mens fashion boutique with minimalist design and elegant displays

Our Story

Founded in 2010, ELEGANCE has been redefining men’s fashion with a focus on quality, craftsmanship, and timeless style. Our collections blend traditional tailoring techniques with contemporary designs to create pieces that stand the test of time.

We believe that every man deserves to feel confident and sophisticated in what he wears. That’s why we source only the finest materials and work with skilled artisans to bring you clothing that looks as good as it feels.

{/* Newsletter */}

Stay Updated

Subscribe to our newsletter for exclusive offers, new arrivals, and style tips

{/* Footer */}
); }