1 Commits

Author SHA1 Message Date
dff1fbfcad Update src/app/page.tsx 2026-04-27 04:52:14 +00:00

View File

@@ -33,21 +33,13 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "hero"},
id: "hero",
},
{ {
name: "Shop", name: "Shop", id: "products"},
id: "products",
},
{ {
name: "Features", name: "Features", id: "features"},
id: "features",
},
{ {
name: "Contact", name: "Contact", id: "contact"},
id: "contact",
},
]} ]}
brandName="NovaMobile" brandName="NovaMobile"
/> />
@@ -56,45 +48,28 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboardCarousel
background={{ background={{
variant: "plain", variant: "plain"}}
}}
title="Future, Redefined" title="Future, Redefined"
description="Experience the pinnacle of mobile innovation. Powerful hardware meets a stunning dark aesthetic." description="Experience the pinnacle of mobile innovation. Powerful hardware meets a stunning dark aesthetic."
buttons={[ buttons={[
{ {
text: "Shop Now", text: "Upgrade Your Experience", href: "#products"},
href: "#products",
},
{ {
text: "Learn More", text: "Learn More", href: "#features"},
href: "#features",
},
]} ]}
mediaItems={[ mediaItems={[
{ {
imageSrc: "http://img.b2bpic.net/free-photo/modern-smartphone-with-live-abstract-wallpaper-coming-out-screen_23-2151033617.jpg", imageSrc: "http://img.b2bpic.net/free-photo/modern-smartphone-with-live-abstract-wallpaper-coming-out-screen_23-2151033617.jpg", imageAlt: "Flagship Smartphone"},
imageAlt: "Flagship Smartphone",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/photography-studio-with-equipment-items-arrangement_23-2150254694.jpg", imageSrc: "http://img.b2bpic.net/free-photo/photography-studio-with-equipment-items-arrangement_23-2150254694.jpg", imageAlt: "Camera Sensor"},
imageAlt: "Camera Sensor",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/laptop-headphones-mini-house-plants-table-apartment-room_482257-98954.jpg", imageSrc: "http://img.b2bpic.net/free-photo/laptop-headphones-mini-house-plants-table-apartment-room_482257-98954.jpg", imageAlt: "Handheld Phone"},
imageAlt: "Handheld Phone",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/modern-smartphone-with-blank-screen-studio_187299-46431.jpg", imageSrc: "http://img.b2bpic.net/free-photo/modern-smartphone-with-blank-screen-studio_187299-46431.jpg", imageAlt: "Sleek Floating Design"},
imageAlt: "Sleek Floating Design",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913284.jpg", imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913284.jpg", imageAlt: "Modern Display"},
imageAlt: "Modern Display",
},
{ {
imageSrc: "http://img.b2bpic.net/free-photo/3d-network-connections-design-with-plexus-connecting-lines-dots_1048-11879.jpg", imageSrc: "http://img.b2bpic.net/free-photo/3d-network-connections-design-with-plexus-connecting-lines-dots_1048-11879.jpg", imageAlt: "Abstract Tech"},
imageAlt: "Abstract Tech",
},
]} ]}
/> />
</div> </div>
@@ -106,19 +81,13 @@ export default function LandingPage() {
metrics={[ metrics={[
{ {
icon: Smartphone, icon: Smartphone,
label: "Models Released", label: "Models Released", value: "24+"},
value: "24+",
},
{ {
icon: Shield, icon: Shield,
label: "Security Standards", label: "Security Standards", value: "99.9%"},
value: "99.9%",
},
{ {
icon: Zap, icon: Zap,
label: "Battery Life", label: "Battery Life", value: "48h+"},
value: "48h+",
},
]} ]}
metricsAnimation="blur-reveal" metricsAnimation="blur-reveal"
/> />
@@ -131,38 +100,17 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
id: "f1", id: "f1", title: "Bionic Processor", author: "Power", description: "Blazing fast speeds for gaming and multitasking.", tags: [
title: "Bionic Processor", "Performance", "AI"],
author: "Power", imageSrc: "http://img.b2bpic.net/free-photo/circuit-board-close-up-with-different-components_23-2149174360.jpg"},
description: "Blazing fast speeds for gaming and multitasking.",
tags: [
"Performance",
"AI",
],
imageSrc: "http://img.b2bpic.net/free-photo/circuit-board-close-up-with-different-components_23-2149174360.jpg",
},
{ {
id: "f2", id: "f2", title: "Pro Grade Lens", author: "Camera", description: "Capture life in cinematic 8K resolution.", tags: [
title: "Pro Grade Lens", "Photography", "4K"],
author: "Camera", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-optical-fiber-details_23-2149212620.jpg"},
description: "Capture life in cinematic 8K resolution.",
tags: [
"Photography",
"4K",
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-optical-fiber-details_23-2149212620.jpg",
},
{ {
id: "f3", id: "f3", title: "Rapid Charging", author: "Battery", description: "Get from 0 to 100% in under 30 minutes.", tags: [
title: "Rapid Charging", "Speed", "Energy"],
author: "Battery", imageSrc: "http://img.b2bpic.net/free-photo/abstract-image-multi-colored-lights_1359-1054.jpg"},
description: "Get from 0 to 100% in under 30 minutes.",
tags: [
"Speed",
"Energy",
],
imageSrc: "http://img.b2bpic.net/free-photo/abstract-image-multi-colored-lights_1359-1054.jpg",
},
]} ]}
title="Unrivaled Performance" title="Unrivaled Performance"
description="Packed with the technology you need for your modern lifestyle." description="Packed with the technology you need for your modern lifestyle."
@@ -177,47 +125,17 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "p1", id: "p1", name: "Nova Pro Max", price: "$1,299", variant: "Midnight Red", imageSrc: "http://img.b2bpic.net/free-photo/3d-art-burgundy-lines-against-red-background_181624-18259.jpg"},
name: "Nova Pro Max",
price: "$1,299",
variant: "Midnight Red",
imageSrc: "http://img.b2bpic.net/free-photo/3d-art-burgundy-lines-against-red-background_181624-18259.jpg",
},
{ {
id: "p2", id: "p2", name: "Nova Edge", price: "$999", variant: "Metallic Black", imageSrc: "http://img.b2bpic.net/free-photo/new-cell-phone-colorful-background_58702-5225.jpg"},
name: "Nova Edge",
price: "$999",
variant: "Metallic Black",
imageSrc: "http://img.b2bpic.net/free-photo/new-cell-phone-colorful-background_58702-5225.jpg",
},
{ {
id: "p3", id: "p3", name: "Nova Slim", price: "$899", variant: "Ruby Red", imageSrc: "http://img.b2bpic.net/free-photo/smiling-influencer-excited-record-mini-led-lights-review-apartment-studio_482257-82739.jpg"},
name: "Nova Slim",
price: "$899",
variant: "Ruby Red",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-influencer-excited-record-mini-led-lights-review-apartment-studio_482257-82739.jpg",
},
{ {
id: "p4", id: "p4", name: "Nova Lite", price: "$699", variant: "Obsidian", imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-black-smartphone-leaned-stone_181624-24032.jpg"},
name: "Nova Lite",
price: "$699",
variant: "Obsidian",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-black-smartphone-leaned-stone_181624-24032.jpg",
},
{ {
id: "p5", id: "p5", name: "Nova Pro", price: "$1,099", variant: "Gunmetal", imageSrc: "http://img.b2bpic.net/free-photo/new-cell-phone-colorful-background_58702-4947.jpg"},
name: "Nova Pro",
price: "$1,099",
variant: "Gunmetal",
imageSrc: "http://img.b2bpic.net/free-photo/new-cell-phone-colorful-background_58702-4947.jpg",
},
{ {
id: "p6", id: "p6", name: "Nova Fold", price: "$1,599", variant: "Carbon", imageSrc: "http://img.b2bpic.net/free-photo/horizontal-clay-phone-16-pro-max_187299-45928.jpg"},
name: "Nova Fold",
price: "$1,599",
variant: "Carbon",
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-clay-phone-16-pro-max_187299-45928.jpg",
},
]} ]}
title="Featured Devices" title="Featured Devices"
description="Explore our curated selection of flagship smartphones." description="Explore our curated selection of flagship smartphones."
@@ -231,57 +149,28 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
plans={[ plans={[
{ {
id: "basic", id: "basic", badge: "Essential", price: "$9/mo", name: "Standard Care", buttons: [
badge: "Essential",
price: "$9/mo",
name: "Standard Care",
buttons: [
{ {
text: "Select", text: "Select", href: "#contact"},
href: "#contact",
},
], ],
features: [ features: [
"1-year warranty", "1-year warranty", "Screen repair", "Basic support"],
"Screen repair",
"Basic support",
],
}, },
{ {
id: "pro", id: "pro", badge: "Recommended", price: "$19/mo", name: "Total Protection", buttons: [
badge: "Recommended",
price: "$19/mo",
name: "Total Protection",
buttons: [
{ {
text: "Select", text: "Select", href: "#contact"},
href: "#contact",
},
], ],
features: [ features: [
"2-year warranty", "2-year warranty", "Unlimited repair", "Priority support", "Device trade-in"],
"Unlimited repair",
"Priority support",
"Device trade-in",
],
}, },
{ {
id: "enterprise", id: "enterprise", badge: "Advanced", price: "$29/mo", name: "Premium Care", buttons: [
badge: "Advanced",
price: "$29/mo",
name: "Premium Care",
buttons: [
{ {
text: "Select", text: "Select", href: "#contact"},
href: "#contact",
},
], ],
features: [ features: [
"3-year warranty", "3-year warranty", "Instant replacement", "Global support", "Cloud storage"],
"Instant replacement",
"Global support",
"Cloud storage",
],
}, },
]} ]}
title="Tailored Protection" title="Tailored Protection"
@@ -296,40 +185,15 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
testimonials={[ testimonials={[
{ {
id: "t1", id: "t1", name: "Alex Rivet", role: "Creative Lead", testimonial: "The design quality is unmatched. NovaMobile changed my mobile experience completely.", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-outside-city_1303-16174.jpg"},
name: "Alex Rivet",
role: "Creative Lead",
testimonial: "The design quality is unmatched. NovaMobile changed my mobile experience completely.",
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-outside-city_1303-16174.jpg",
},
{ {
id: "t2", id: "t2", name: "Sarah Chen", role: "Software Architect", testimonial: "I rely on the Pro Max for my development workflow. Solid performance.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-designer-sitting-office-night_171337-15579.jpg"},
name: "Sarah Chen",
role: "Software Architect",
testimonial: "I rely on the Pro Max for my development workflow. Solid performance.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-designer-sitting-office-night_171337-15579.jpg",
},
{ {
id: "t3", id: "t3", name: "Mark Jones", role: "Analyst", testimonial: "Excellent customer support and reliable devices. Truly a premium shop.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg"},
name: "Mark Jones",
role: "Analyst",
testimonial: "Excellent customer support and reliable devices. Truly a premium shop.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg",
},
{ {
id: "t4", id: "t4", name: "Elena Rossi", role: "Designer", testimonial: "The screen quality on Nova Edge is gorgeous. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-checking-mobile_23-2148514885.jpg"},
name: "Elena Rossi",
role: "Designer",
testimonial: "The screen quality on Nova Edge is gorgeous. Highly recommended.",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-checking-mobile_23-2148514885.jpg",
},
{ {
id: "t5", id: "t5", name: "David Kim", role: "Engineer", testimonial: "Been with them for years. Every device upgrade is a leap forward.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-bored-man-sitting-couch-flipping-though-tv-channels_482257-126574.jpg"},
name: "David Kim",
role: "Engineer",
testimonial: "Been with them for years. Every device upgrade is a leap forward.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-bored-man-sitting-couch-flipping-though-tv-channels_482257-126574.jpg",
},
]} ]}
title="Loved by Tech Enthusiasts" title="Loved by Tech Enthusiasts"
description="See why our customers trust NovaMobile for their daily connectivity." description="See why our customers trust NovaMobile for their daily connectivity."
@@ -341,20 +205,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ {
id: "q1", id: "q1", title: "Do you offer international shipping?", content: "Yes, we ship globally with insured courier services."},
title: "Do you offer international shipping?",
content: "Yes, we ship globally with insured courier services.",
},
{ {
id: "q2", id: "q2", title: "What is the warranty policy?", content: "We offer a standard 1-year manufacturer warranty on all devices."},
title: "What is the warranty policy?",
content: "We offer a standard 1-year manufacturer warranty on all devices.",
},
{ {
id: "q3", id: "q3", title: "Can I return a device?", content: "You can return your device within 30 days of purchase for a full refund."},
title: "Can I return a device?",
content: "You can return your device within 30 days of purchase for a full refund.",
},
]} ]}
sideTitle="Frequently Asked Questions" sideTitle="Frequently Asked Questions"
sideDescription="Find answers to common questions about our products and services." sideDescription="Find answers to common questions about our products and services."
@@ -369,22 +224,14 @@ export default function LandingPage() {
description="Have questions? Our support team is ready to assist you." description="Have questions? Our support team is ready to assist you."
inputs={[ inputs={[
{ {
name: "name", name: "name", type: "text", placeholder: "Your Name", required: true,
type: "text",
placeholder: "Your Name",
required: true,
}, },
{ {
name: "email", name: "email", type: "email", placeholder: "Email Address", required: true,
type: "email",
placeholder: "Email Address",
required: true,
}, },
]} ]}
textarea={{ textarea={{
name: "message", name: "message", placeholder: "How can we help?", rows: 4,
placeholder: "How can we help?",
rows: 4,
}} }}
imageSrc="http://img.b2bpic.net/free-photo/top-view-desk-with-laptop-phone_23-2148291122.jpg" imageSrc="http://img.b2bpic.net/free-photo/top-view-desk-with-laptop-phone_23-2148291122.jpg"
/> />
@@ -396,29 +243,19 @@ export default function LandingPage() {
{ {
items: [ items: [
{ {
label: "Shop", label: "Shop", href: "#products"},
href: "#products",
},
{ {
label: "Features", label: "Features", href: "#features"},
href: "#features",
},
{ {
label: "Contact", label: "Contact", href: "#contact"},
href: "#contact",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
{ {
label: "Terms of Service", label: "Terms of Service", href: "#"},
href: "#",
},
], ],
}, },
]} ]}
@@ -428,4 +265,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }