Files
9a52f38e-044d-470e-8da7-1ef…/src/app/page.tsx
2026-03-09 19:59:56 +00:00

238 lines
13 KiB
TypeScript

"use client";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, CheckCircle, Mail, Star, Users, Zap, Sparkles } from 'lucide-react';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="blurBottom"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Latest Drops", id: "drops" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
brandName="NYC Kicks"
bottomLeftText="New York, NY"
bottomRightText="hello@nyckcks.com"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="Step Into Style"
description="Discover NYC's most exclusive sneaker collection. From rare limited editions to the latest releases, find your perfect kick."
tag="Premium Sneaker Collection"
imageSrc="http://img.b2bpic.net/free-photo/white-sneakers-closeup-men-s-apparel-summer-fashion-beach-photoshoot_53876-101216.jpg"
imageAlt="NYC Kicks Hero - Premium Sneaker Collection"
textPosition="bottom-left"
showBlur={true}
showDimOverlay={true}
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Explore Collection", href: "products" }
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
title="Featured Kicks"
description="Handpicked sneakers selected by our expert team. Each pair represents quality, style, and authenticity."
tag="New Arrivals"
textboxLayout="default"
useInvertedBackground={false}
products={[
{
id: "1", name: "Air Retro Premium", price: "$185", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-whale-pottery-workshop-finished-product-close-view_1153-6315.jpg?_wi=1", imageAlt: "Air Retro Premium Sneaker"
},
{
id: "2", name: "Urban Streetwear Classic", price: "$165", imageSrc: "http://img.b2bpic.net/free-photo/low-section-unrecognizable-people-activewear-standing-wall-building_1098-19236.jpg?_wi=1", imageAlt: "Urban Streetwear Classic Sneaker"
},
{
id: "3", name: "Limited Edition Drop", price: "$225", imageSrc: "http://img.b2bpic.net/free-psd/sneakers-facebook-ad-template-design_23-2151798477.jpg?_wi=1", imageAlt: "Limited Edition Drop Sneaker"
}
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="About NYC Kicks"
description="We're passionate about sneaker culture and dedicated to bringing you the most authentic, sought-after footwear in New York City."
tag="Our Story"
bulletPoints={[
{
title: "Authentic Selection", description: "Every sneaker is verified authentic and sourced from trusted distributors worldwide.", icon: CheckCircle
},
{
title: "Expert Curation", description: "Our team of sneaker experts hand-selects every piece in our collection.", icon: Award
},
{
title: "Community Driven", description: "We celebrate sneaker culture and connect collectors and enthusiasts together.", icon: Users
}
]}
imageSrc="http://img.b2bpic.net/free-photo/couple-selecting-shoe-shop_107420-94842.jpg"
imageAlt="NYC Kicks Store"
textboxLayout="default"
useInvertedBackground={false}
imagePosition="right"
buttons={[
{ text: "Learn More", href: "#contact" }
]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardOne
title="Why Choose NYC Kicks"
description="Experience premium sneaker shopping with service that matches the quality of our collection."
features={[
{
title: "Fast Delivery", description: "Same-day or next-day shipping available for local NYC orders. Worldwide shipping with tracking.", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-whale-pottery-workshop-finished-product-close-view_1153-6315.jpg?_wi=2", imageAlt: "Fast Delivery Service"
},
{
title: "Price Match Guarantee", description: "Can't find a better price? We'll match it. Your satisfaction and trust matter most to us.", imageSrc: "http://img.b2bpic.net/free-photo/low-section-unrecognizable-people-activewear-standing-wall-building_1098-19236.jpg?_wi=2", imageAlt: "Price Match Guarantee"
},
{
title: "Expert Authentication", description: "Every sneaker undergoes rigorous authentication before reaching your hands. Genuine or your money back.", imageSrc: "http://img.b2bpic.net/free-psd/sneakers-facebook-ad-template-design_23-2151798477.jpg?_wi=2", imageAlt: "Expert Authentication"
}
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="drops" data-section="drops">
<PricingCardOne
title="Latest Drops"
description="This season's most anticipated releases are now available. Get them before they're gone."
tag="Hot Releases"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "1", badge: "Just Dropped", badgeIcon: Zap,
price: "$199", subtitle: "Air Max Retro Edition", features: ["Limited stock available", "Exclusive colorway", "Certificate of authenticity"]
},
{
id: "2", badge: "Best Seller", badgeIcon: Sparkles,
price: "$175", subtitle: "Classic Court Sneaker", features: ["Timeless design", "Perfect for daily wear", "Comfortable cushioning"]
},
{
id: "3", badge: "Coming Soon", badgeIcon: Star,
price: "$249", subtitle: "Limited Collaboration", features: ["Designer collaboration", "Pre-order available", "Early bird pricing"]
}
]}
animationType="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="What Our Collectors Say"
description="Join thousands of satisfied sneaker enthusiasts who trust NYC Kicks for authentic, premium footwear."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
testimonials={[
{
id: "1", name: "Marcus Thompson", handle: "@sneaker_collector_nyc", testimonial: "NYC Kicks is my go-to for authentic limited editions. The authentication process gives me complete peace of mind.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-handsome-guy-wearing-green-shirt_141793-122624.jpg?_wi=1", imageAlt: "Marcus Thompson"
},
{
id: "2", name: "Sarah Chen", handle: "@urbanstyle_hub", testimonial: "Best sneaker shop in Manhattan! Their customer service is unmatched and the selection is incredible.", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-street-outfit_1303-23455.jpg?_wi=1", imageAlt: "Sarah Chen"
},
{
id: "3", name: "Alex Rodriguez", handle: "@kickscommune", testimonial: "Fast shipping, authentic products, and fair prices. This is the real deal. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-caucasian-businessman-with-trendy-haircut-trimmed-beard-having-serious-confident-look-while-posing-isolated-agaisnt-white-studio-wall-backround-with-copy-space-your-text_343059-873.jpg", imageAlt: "Alex Rodriguez"
},
{
id: "4", name: "Jessica Moon", handle: "@fashion_forward_ja", testimonial: "Found my grails here! The team really knows their stuff and helped me find exactly what I was looking for.", imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg", imageAlt: "Jessica Moon"
},
{
id: "5", name: "David Park", handle: "@sneakerhead_elite", testimonial: "Been ordering from NYC Kicks for two years. Consistently excellent quality and authentic merchandise.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-handsome-guy-wearing-green-shirt_141793-122624.jpg?_wi=2", imageAlt: "David Park"
},
{
id: "6", name: "Emma Wilson", handle: "@kicksgirl_ny", testimonial: "The attention to detail is amazing. Every sneaker arrives in perfect condition with full authentication docs.", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-street-outfit_1303-23455.jpg?_wi=2", imageAlt: "Emma Wilson"
}
]}
speed={40}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Get In Touch"
tagIcon={Mail}
title="Ready to Find Your Perfect Pair?"
description="Subscribe to our newsletter for exclusive drops, early access to limited releases, and insider deals. Join the NYC Kicks community today."
buttons={[
{ text: "Subscribe Now", href: "#" },
{ text: "Visit Store", href: "#" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Shop", items: [
{ label: "Featured Products", href: "#products" },
{ label: "Latest Drops", href: "#drops" },
{ label: "All Sneakers", href: "#" },
{ label: "Sale Items", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Contact", href: "#contact" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Authentication", href: "#" },
{ label: "Returns & Exchanges", href: "#" },
{ label: "Shipping Info", href: "#" },
{ label: "Privacy Policy", href: "#" }
]
}
]}
copyrightText="© 2025 NYC Kicks | Premium Sneaker Collective"
/>
</div>
</ThemeProvider>
);
}