305 lines
13 KiB
TypeScript
305 lines
13 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|
import Link from "next/link";
|
|
import {
|
|
Sparkles,
|
|
Trophy,
|
|
Zap,
|
|
Shield,
|
|
Truck,
|
|
RefreshCw,
|
|
Award,
|
|
Lock,
|
|
Users,
|
|
Star,
|
|
Mail,
|
|
} from "lucide-react";
|
|
|
|
export default function HomePage() {
|
|
const navItems = [
|
|
{ name: "Watches", id: "watches" },
|
|
{ name: "Accessories", id: "accessories" },
|
|
{ name: "Trimmers", id: "trimmers" },
|
|
{ name: "New Arrivals", id: "new-arrivals" },
|
|
{ name: "Sale", id: "sale" },
|
|
];
|
|
|
|
const bestSellerProducts = [
|
|
{
|
|
id: "watch-001", name: "Chrono Titanium Pro", price: "$249.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/modern-black-watch-wrist-man-sitting-car_181624-58251.jpg?_wi=1", imageAlt: "Chrono Titanium Pro watch"},
|
|
{
|
|
id: "watch-002", name: "Heritage Classic", price: "$189.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/businessman-looking-his-watch-closeup_53876-176905.jpg?_wi=1", imageAlt: "Heritage Classic watch"},
|
|
{
|
|
id: "accessory-001", name: "Italian Leather Belt", price: "$79.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/fashion-portrait-young-businessman-handsome-model-man-dressed-elegant-brown-suit-with-accessories_158538-11190.jpg?_wi=1", imageAlt: "Italian Leather Belt"},
|
|
{
|
|
id: "trimmer-001", name: "Precision Beard Trimmer", price: "$99.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/handsome-young-man-holding-electric-razor_171337-17322.jpg?_wi=1", imageAlt: "Precision Beard Trimmer"},
|
|
{
|
|
id: "accessory-002", name: "Stainless Steel Wallet", price: "$59.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/fashion-portrait-young-businessman-handsome-model-man-casual-cloth-suit-with-accesories-hands_158538-9446.jpg?_wi=1", imageAlt: "Stainless Steel Wallet"},
|
|
{
|
|
id: "watch-003", name: "Urban Explorer", price: "$159.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/woman-checks-time-watch-waits-transport-which-delays-wears-sunglasses-jacket-poses-outdoor-going-have-meeting-strolls-city-downtown_273609-55294.jpg?_wi=1", imageAlt: "Urban Explorer watch"},
|
|
];
|
|
|
|
const newArrivalProducts = [
|
|
{
|
|
id: "new-watch-001", name: "Quantum Edge", price: "$299.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/futuristic-hologram-smartwatch-wearable-technology_53876-108508.jpg?_wi=1", imageAlt: "Quantum Edge smart watch"},
|
|
{
|
|
id: "new-accessory-001", name: "Carbon Fiber Card Holder", price: "$49.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/top-view-camera-battery-black-background_23-2148363418.jpg?_wi=1", imageAlt: "Carbon Fiber Card Holder"},
|
|
{
|
|
id: "new-trimmer-001", name: "Pro Max Grooming Kit", price: "$129.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/close-up-man-selfcare-products_23-2149313027.jpg?_wi=1", imageAlt: "Pro Max Grooming Kit"},
|
|
{
|
|
id: "new-watch-002", name: "Minimalist Mono", price: "$179.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/grayscale-closeup-shot-person-wearing-wristwatch_181624-3953.jpg?_wi=1", imageAlt: "Minimalist Mono watch"},
|
|
{
|
|
id: "new-accessory-002", name: "Premium Leather Strap", price: "$39.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/worker-equipment-manual-tool-surface_1303-374.jpg?_wi=1", imageAlt: "Premium Leather Strap"},
|
|
{
|
|
id: "new-accessory-003", name: "Titanium Key Chain", price: "$34.99", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/metallic-key-still-life_23-2151011258.jpg?_wi=1", imageAlt: "Titanium Key Chain"},
|
|
];
|
|
|
|
const features = [
|
|
{
|
|
icon: Shield,
|
|
title: "100% Authentic", description:
|
|
"Every product is verified authentic with certificate of authenticity included"},
|
|
{
|
|
icon: Truck,
|
|
title: "Fast Shipping", description:
|
|
"Free expedited shipping on orders over $100. Delivery within 2-3 business days"},
|
|
{
|
|
icon: RefreshCw,
|
|
title: "Easy Returns", description:
|
|
"30-day hassle-free returns policy. No questions asked. Full refund guaranteed"},
|
|
{
|
|
icon: Award,
|
|
title: "Premium Quality", description:
|
|
"Handpicked collection from leading international brands and artisans"},
|
|
{
|
|
icon: Lock,
|
|
title: "Secure Checkout", description:
|
|
"Bank-level encryption protects your personal and payment information"},
|
|
{
|
|
icon: Users,
|
|
title: "Expert Support", description:
|
|
"24/7 dedicated customer service team to assist with any questions"},
|
|
];
|
|
|
|
const testimonials = [
|
|
{
|
|
id: "1", name: "James Mitchell", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "James Mitchell"},
|
|
{
|
|
id: "2", name: "David Chen", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/smiling-young-asian-businessman-with-crossed-arms_1262-1620.jpg", imageAlt: "David Chen"},
|
|
{
|
|
id: "3", name: "Michael Rodriguez", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/closeup-young-hispanic-man-casuals-studio_662251-600.jpg", imageAlt: "Michael Rodriguez"},
|
|
{
|
|
id: "4", name: "Alexander Thompson", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg", imageAlt: "Alexander Thompson"},
|
|
{
|
|
id: "5", name: "Christopher Lee", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg", imageAlt: "Christopher Lee"},
|
|
{
|
|
id: "6", name: "Jonathan Smith", imageSrc:
|
|
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Jonathan Smith"},
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
title: "Shop", items: [
|
|
{ label: "Watches", href: "/shop?category=watches" },
|
|
{ label: "Accessories", href: "/shop?category=accessories" },
|
|
{ label: "Trimmers", href: "/shop?category=trimmers" },
|
|
{ label: "New Arrivals", href: "/shop?sort=new" },
|
|
{ label: "Sale Items", href: "/shop?filter=sale" },
|
|
],
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Our Story", href: "/about" },
|
|
{ label: "Sustainability", href: "/sustainability" },
|
|
{ label: "Careers", href: "/careers" },
|
|
{ label: "Blog", href: "/blog" },
|
|
],
|
|
},
|
|
{
|
|
title: "Support", items: [
|
|
{ label: "Contact Us", href: "/contact" },
|
|
{ label: "FAQ", href: "/faq" },
|
|
{ label: "Shipping Info", href: "/shipping" },
|
|
{ label: "Returns & Exchanges", href: "/returns" },
|
|
{ label: "Track Order", href: "/track" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "/privacy" },
|
|
{ label: "Terms of Service", href: "/terms" },
|
|
{ label: "Cookie Policy", href: "/cookies" },
|
|
{ label: "Accessibility", href: "/accessibility" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{
|
|
label: "Instagram", href: "https://instagram.com/premiumessentials"},
|
|
{
|
|
label: "Facebook", href: "https://facebook.com/premiumessentials"},
|
|
{
|
|
label: "Twitter", href: "https://twitter.com/premiumessentials"},
|
|
{
|
|
label: "YouTube", href: "https://youtube.com/@premiumessentials"},
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="small"
|
|
sizing="largeSmall"
|
|
background="circleGradient"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="normal"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple brandName="Premium Essentials" navItems={navItems} />
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitDualMedia
|
|
title="Elevate Your Everyday Style"
|
|
description="Discover premium watches, accessories, and grooming tools crafted for the modern man. Timeless quality meets contemporary design."
|
|
tag="Exclusive Collection"
|
|
tagIcon={Sparkles}
|
|
background={{ variant: "plain" }}
|
|
mediaItems={[
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/businessman-looking-his-watch-closeup_53876-176905.jpg?_wi=2", imageAlt: "Premium men's watch collection"},
|
|
{
|
|
imageSrc:
|
|
"http://img.b2bpic.net/free-photo/top-view-accessoires-travel-with-man-clothing-concept-shirt-jean-mobile-phone-wooden-background-watch-sunglasses-shoes-wood-table_1921-82.jpg", imageAlt: "Men's accessories showcase"},
|
|
]}
|
|
mediaAnimation="slide-up"
|
|
rating={5}
|
|
ratingText="Trusted by 50,000+ customers"
|
|
buttons={[
|
|
{ text: "Shop Now", href: "/shop" },
|
|
{ text: "Explore Collections", href: "#new-arrivals" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="best-sellers" data-section="best-sellers">
|
|
<ProductCardOne
|
|
title="Best Sellers"
|
|
description="Our most-loved products. Shop the collection trusted by thousands of discerning customers."
|
|
tag="Top Rated"
|
|
tagIcon={Trophy}
|
|
products={bestSellerProducts}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="new-arrivals" data-section="new-arrivals">
|
|
<ProductCardOne
|
|
title="New Arrivals"
|
|
description="Fresh additions to our collection. Be the first to own the latest in men's style."
|
|
tag="Just Launched"
|
|
tagIcon={Zap}
|
|
products={newArrivalProducts}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureBorderGlow
|
|
title="Why Choose Premium Essentials"
|
|
description="Experience the difference quality and craftsmanship make."
|
|
features={features}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwelve
|
|
testimonials={testimonials}
|
|
cardTitle="Over 50,000 satisfied customers trust Premium Essentials for authentic quality and exceptional service"
|
|
cardTag="Highly Rated"
|
|
cardTagIcon={Star}
|
|
cardAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="social-proof" data-section="social-proof">
|
|
<SocialProofOne
|
|
title="Featured In"
|
|
description="Recognized by leading publications and influencers worldwide"
|
|
tag="Press & Recognition"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
names={[
|
|
"GQ Magazine", "Hypebeast", "Gentleman's Journal", "The Verge", "Complex", "Mens Health", "Esquire", "Wired"]}
|
|
speed={40}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="newsletter" data-section="newsletter">
|
|
<ContactCenter
|
|
tag="Newsletter"
|
|
title="Exclusive Offers & Style Tips"
|
|
description="Subscribe to get 15% off your first order plus weekly styling guides, new arrivals, and exclusive member-only deals delivered to your inbox."
|
|
tagIcon={Mail}
|
|
background={{ variant: "animated-grid" }}
|
|
useInvertedBackground={false}
|
|
inputPlaceholder="Enter your email"
|
|
buttonText="Subscribe"
|
|
termsText="We respect your privacy. Unsubscribe at any time. By subscribing, you agree to our Terms and Privacy Policy."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="Premium Essentials"
|
|
columns={footerColumns}
|
|
copyrightText="© 2025 Premium Essentials. All rights reserved. Crafted for the modern man."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |