Merge version_1 into main #2
208
src/app/page.tsx
208
src/app/page.tsx
@@ -29,90 +29,43 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Featured",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Support",
|
||||
id: "faq",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Featured", id: "features" },
|
||||
{ name: "Shop", id: "products" },
|
||||
{ name: "Support", id: "faq" },
|
||||
]}
|
||||
brandName="Maxin Store"
|
||||
button={{
|
||||
text: "Get Started", href: "#products"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Modern Retail, Reimagined"
|
||||
description="Discover a curated collection of high-tech gadgets, elegant home essentials, and adventure-ready gear at Maxin Store."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Now",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#features",
|
||||
},
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#features" },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/a-professional-wide-shot-of-a-modern-mul-1774870554451-ede315a3.png"
|
||||
imageAlt="Maxin Store Product Collection"
|
||||
avatars={[
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-kitchen-goods-custom-1774870553154-d8173133.png",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-an-outdoor-adventurer-custom-1774870553931-f5cf3e26.png",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-smart-home-user-1774870553712-e8a851c5.png",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png", alt: "Customer 1" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-kitchen-goods-custom-1774870553154-d8173133.png", alt: "Customer 2" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-an-outdoor-adventurer-custom-1774870553931-f5cf3e26.png", alt: "Customer 3" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-smart-home-user-1774870553712-e8a851c5.png", alt: "Customer 4" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png", alt: "Customer 5" },
|
||||
]}
|
||||
avatarText="Trusted by 10,000+ happy customers"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Fast Shipping",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "24/7 Support",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Premium Quality",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Secure Checkout",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Global Warranty",
|
||||
},
|
||||
{ type: "text", text: "Fast Shipping" },
|
||||
{ type: "text", text: "24/7 Support" },
|
||||
{ type: "text", text: "Premium Quality" },
|
||||
{ type: "text", text: "Secure Checkout" },
|
||||
{ type: "text", text: "Global Warranty" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -123,36 +76,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
label: "Electronics",
|
||||
title: "Cutting-Edge Tech",
|
||||
items: [
|
||||
"Wireless charging stations",
|
||||
"RGB gaming peripherals",
|
||||
"Smart home security",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
label: "Home",
|
||||
title: "Elegant Living",
|
||||
items: [
|
||||
"Airtight glass storage",
|
||||
"Durable bamboo materials",
|
||||
"Minimalist home organization",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
label: "Outdoor",
|
||||
title: "Adventure Ready",
|
||||
items: [
|
||||
"High-power binoculars",
|
||||
"Waterproof travel covers",
|
||||
"Durable pet accessories",
|
||||
],
|
||||
},
|
||||
{ id: "f1", label: "Electronics", title: "Cutting-Edge Tech", items: ["Wireless charging stations", "RGB gaming peripherals", "Smart home security"] },
|
||||
{ id: "f2", label: "Home", title: "Elegant Living", items: ["Airtight glass storage", "Durable bamboo materials", "Minimalist home organization"] },
|
||||
{ id: "f3", label: "Outdoor", title: "Adventure Ready", items: ["High-power binoculars", "Waterproof travel covers", "Durable pet accessories"] },
|
||||
]}
|
||||
title="Why Choose Maxin?"
|
||||
description="Delivering quality and utility through diverse, high-performance product selections."
|
||||
@@ -166,33 +92,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "TechTech",
|
||||
name: "2.4G Wireless RGB Mouse",
|
||||
price: "$12.00",
|
||||
rating: 5,
|
||||
reviewCount: "128",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/gaming-wireless-rgb-mouse-dark-aesthetic-1774870556915-7985ecbd.png",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "KitchenPro",
|
||||
name: "Glass Canister Set",
|
||||
price: "$45.00",
|
||||
rating: 4,
|
||||
reviewCount: "89",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/glass-canisters-with-bamboo-lids-modern--1774870553449-7fc4add1.png",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "PetTravel",
|
||||
name: "Waterproof Seat Cover",
|
||||
price: "$32.00",
|
||||
rating: 5,
|
||||
reviewCount: "210",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/high-quality-waterproof-dog-car-seat-cov-1774870553881-c9a9c8f7.png",
|
||||
},
|
||||
{ id: "p1", brand: "TechTech", name: "2.4G Wireless RGB Mouse", price: "$12.00", rating: 5, reviewCount: "128", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/gaming-wireless-rgb-mouse-dark-aesthetic-1774870556915-7985ecbd.png" },
|
||||
{ id: "p2", brand: "KitchenPro", name: "Glass Canister Set", price: "$45.00", rating: 4, reviewCount: "89", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/glass-canisters-with-bamboo-lids-modern--1774870553449-7fc4add1.png" },
|
||||
{ id: "p3", brand: "PetTravel", name: "Waterproof Seat Cover", price: "$32.00", rating: 5, reviewCount: "210", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/high-quality-waterproof-dog-car-seat-cov-1774870553881-c9a9c8f7.png" },
|
||||
]}
|
||||
title="Featured Collections"
|
||||
description="Our current best-sellers selected for performance and everyday style."
|
||||
@@ -203,15 +105,7 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Shopify",
|
||||
"SecurePay",
|
||||
"FastShip",
|
||||
"Trusted Brand",
|
||||
"Quality Certified",
|
||||
"Global Logistics",
|
||||
"Customer First",
|
||||
]}
|
||||
names={["Shopify", "SecurePay", "FastShip", "Trusted Brand", "Quality Certified", "Global Logistics", "Customer First"]}
|
||||
title="Trusted Platforms"
|
||||
description="Delivering excellence through established e-commerce partnerships."
|
||||
/>
|
||||
@@ -221,31 +115,11 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Alex R.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Jamie L.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-kitchen-goods-custom-1774870553154-d8173133.png",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Chris B.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-an-outdoor-adventurer-custom-1774870553931-f5cf3e26.png",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Taylor S.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-smart-home-user-1774870553712-e8a851c5.png",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Morgan P.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png?_wi=2",
|
||||
},
|
||||
{ id: "1", name: "Alex R.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png" },
|
||||
{ id: "2", name: "Jamie L.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-kitchen-goods-custom-1774870553154-d8173133.png" },
|
||||
{ id: "3", name: "Chris B.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-an-outdoor-adventurer-custom-1774870553931-f5cf3e26.png" },
|
||||
{ id: "4", name: "Taylor S.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-smart-home-user-1774870553712-e8a851c5.png" },
|
||||
{ id: "5", name: "Morgan P.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfBzjdj2PffayeNQ6uvGcbI3XL/portrait-of-a-happy-tech-customer-1774870554842-bf7efbd8.png" },
|
||||
]}
|
||||
cardTitle="Customer Success"
|
||||
cardTag="Reviews"
|
||||
@@ -258,21 +132,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "How long is shipping?",
|
||||
content: "Standard shipping typically takes 3-7 business days.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "What is the return policy?",
|
||||
content: "We offer returns within 30 days of purchase for unused items.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Do you ship internationally?",
|
||||
content: "Currently we operate within major regions. Check checkout for details.",
|
||||
},
|
||||
{ id: "q1", title: "How long is shipping?", content: "Standard shipping typically takes 3-7 business days." },
|
||||
{ id: "q2", title: "What is the return policy?", content: "We offer returns within 30 days of purchase for unused items." },
|
||||
{ id: "q3", title: "Do you ship internationally?", content: "Currently we operate within major regions. Check checkout for details." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions? We're here to help."
|
||||
|
||||
Reference in New Issue
Block a user