“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 */}
{/* 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.
Shop Collection
Learn More
{/* Categories Section */}
Shop by Category
Explore our curated collections designed for the modern gentleman
{categories.map((category, index) => (
{category.name}
{category.description}
))}
{/* Featured Products */}
Featured Products
Discover our most popular items this season
{featuredProducts.map((product, index) => (
{product.name}
{product.description}
{product.price}
Add to Cart
))}
{/* Brand Story */}
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.
Learn More About Us
{/* Newsletter */}
{/* Footer */}
{/* Brand */}
ELEGANCE
Redefining men’s fashion with timeless style, quality craftsmanship, and modern elegance.
{/* Shop */}
{/* Company */}
© 2025 ELEGANCE. All rights reserved.
);
}