Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5efe93d1ef | |||
| 1157c27825 |
139
src/app/page.tsx
139
src/app/page.tsx
@@ -29,17 +29,11 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Products",
|
name: "Products", id: "products"},
|
||||||
id: "products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Blaze Shop"
|
brandName="Blaze Shop"
|
||||||
/>
|
/>
|
||||||
@@ -48,19 +42,14 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroLogoBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
logoText="BLAZE SHOP"
|
logoText="BLAZE SHOP"
|
||||||
description="Ignite your style with curated products. Experience premium shopping with unmatched quality and speed."
|
description="Ignite your style with curated products. Experience premium shopping with unmatched quality and speed."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Shop Now",
|
text: "Shop Now", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349293.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349293.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -75,41 +64,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Apex Runner V1", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/woman-formal-clothes-with-copy-space_23-2148647626.jpg"},
|
||||||
name: "Apex Runner V1",
|
|
||||||
price: "$120.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-formal-clothes-with-copy-space_23-2148647626.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "SoundWave Pro", price: "$299.00", imageSrc: "http://img.b2bpic.net/free-photo/rendering-smart-home-device_23-2151039373.jpg"},
|
||||||
name: "SoundWave Pro",
|
|
||||||
price: "$299.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/rendering-smart-home-device_23-2151039373.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Titan Pulse Watch", price: "$199.00", imageSrc: "http://img.b2bpic.net/free-photo/woman-checks-results-fitness-training-smartwatch-listens-music-via-headphones-dressed-anorak-poses-blurred_273609-54120.jpg"},
|
||||||
name: "Titan Pulse Watch",
|
|
||||||
price: "$199.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-checks-results-fitness-training-smartwatch-listens-music-via-headphones-dressed-anorak-poses-blurred_273609-54120.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "MechKey Zenith", price: "$145.00", imageSrc: "http://img.b2bpic.net/free-photo/passionate-musician-playing-chords-piano_23-2148673555.jpg"},
|
||||||
name: "MechKey Zenith",
|
|
||||||
price: "$145.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/passionate-musician-playing-chords-piano_23-2148673555.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Nomad Leather Wallet", price: "$85.00", imageSrc: "http://img.b2bpic.net/free-photo/leather-bag-travel-with-headphones_23-2149434023.jpg"},
|
||||||
name: "Nomad Leather Wallet",
|
|
||||||
price: "$85.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/leather-bag-travel-with-headphones_23-2149434023.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Chronos Steel", price: "$340.00", imageSrc: "http://img.b2bpic.net/free-photo/closeup-watch_53876-32028.jpg"},
|
||||||
name: "Chronos Steel",
|
|
||||||
price: "$340.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-watch_53876-32028.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Featured Essentials"
|
title="Featured Essentials"
|
||||||
description="Discover our latest arrivals, carefully chosen for performance and aesthetic."
|
description="Discover our latest arrivals, carefully chosen for performance and aesthetic."
|
||||||
@@ -123,38 +88,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "$2.5M+", title: "Sales Generated", items: [
|
||||||
value: "10k+",
|
"Revenue for sellers", "Top tier growth", "Consistent volume"],
|
||||||
title: "Happy Customers",
|
|
||||||
items: [
|
|
||||||
"Delivered worldwide",
|
|
||||||
"5-star rated support",
|
|
||||||
"Repeat buyers",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "500+", title: "Active Sellers", items: [
|
||||||
value: "24/7",
|
"Verified experts", "Global reach", "Trusted partners"],
|
||||||
title: "Customer Support",
|
|
||||||
items: [
|
|
||||||
"Always available",
|
|
||||||
"Real-time chat",
|
|
||||||
"Fast resolution",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "98%", title: "Seller Success Rate", items: [
|
||||||
value: "99.9%",
|
"High conversion", "Optimized workflow", "Proven results"],
|
||||||
title: "Reliability",
|
|
||||||
items: [
|
|
||||||
"Secure platform",
|
|
||||||
"Encrypted payments",
|
|
||||||
"Proven track record",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Performance at Scale"
|
title="Scale Your Success"
|
||||||
description="Blaze Shop delivers results. Here is why thousands trust us every day."
|
description="Join a platform built to empower sellers with the tools they need to thrive."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -165,43 +112,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah Chen", role: "Power Seller", testimonial: "Blaze Shop transformed my business. My product reach has doubled in just three months.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-woman-entrepreneur_23-2148737671.jpg"},
|
||||||
name: "Alex R.",
|
|
||||||
role: "Tech Enthusiast",
|
|
||||||
testimonial: "Blaze Shop redefined my shopping experience. Fast, clean, and top-tier products.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-japanese-woman-with-jacket_23-2148870741.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Marcus Vane", role: "Brand Owner", testimonial: "The seller dashboard is incredibly intuitive. I spend less time managing and more time selling.", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-businessman_23-2148737672.jpg"},
|
||||||
name: "Sam K.",
|
|
||||||
role: "Designer",
|
|
||||||
testimonial: "The aesthetics are just right. Blaze Shop feels like the future of e-commerce.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-portrait-with-overexposed-moving-style_23-2149495267.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Elena Rodriguez", role: "Artisan", testimonial: "The best platform for creators. Everything from checkout to logistics is handled seamlessly.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-working-art-studio_23-2148737673.jpg"},
|
||||||
name: "Jamie L.",
|
|
||||||
role: "Entrepreneur",
|
|
||||||
testimonial: "Finally, a platform that prioritizes quality. Simply outstanding support.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-nature_23-2148170329.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t4",
|
|
||||||
name: "Taylor M.",
|
|
||||||
role: "Developer",
|
|
||||||
testimonial: "Integration and checkout are seamless. My go-to store for everything tech.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-fashionable-skater-guy-sunglasses-dressed-white-shirt-shorts-sitting-skateboard-bridge-looking-camera_613910-18080.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t5",
|
|
||||||
name: "Morgan D.",
|
|
||||||
role: "Creative",
|
|
||||||
testimonial: "Incredible products and even better design. Highly recommended.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-with-plastic-foil_23-2148864916.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Blaze Users Say"
|
title="Trusted by Top Sellers"
|
||||||
description="Real stories from people who leveled up their lifestyle with Blaze Shop."
|
description="Hear from the entrepreneurs who built their thriving businesses on Blaze Shop."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -209,16 +127,13 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
tag="Get in touch"
|
tag="Get in touch"
|
||||||
title="Ready to Blaze?"
|
title="Ready to Blaze?"
|
||||||
description="Have questions about our products or partnership opportunities? Drop us a line."
|
description="Have questions about our products or partnership opportunities? Drop us a line."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Contact Support",
|
text: "Contact Support", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user