Update src/app/page.tsx

This commit is contained in:
2026-04-02 05:03:29 +00:00
parent 780af28fe2
commit 1f86984f92

View File

@@ -29,21 +29,13 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "hero",
},
name: "Home", id: "hero"},
{
name: "Features",
id: "features",
},
name: "Features", id: "features"},
{
name: "Plans",
id: "products",
},
name: "Plans", id: "products"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="WorldLink"
/>
@@ -52,99 +44,56 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
title="The Future of Internet is Here"
description="Experience lightning-fast speeds and 40% more coverage with WorldLink 6G. Seamless connectivity for your modern lifestyle."
testimonials={[
{
name: "Sarah J.",
handle: "@sarahj",
testimonial: "The 6G speeds have completely changed how I work from home. Absolutely seamless.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg?_wi=1",
},
name: "Sarah J.", handle: "@sarahj", testimonial: "The 6G speeds have completely changed how I work from home. Absolutely seamless.", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg"},
{
name: "Michael K.",
handle: "@mikek",
testimonial: "Finally, consistent coverage in every corner of my house. WorldLink is the best.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-headphones_23-2148924741.jpg",
},
name: "Michael K.", handle: "@mikek", testimonial: "Finally, consistent coverage in every corner of my house. WorldLink is the best.", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/medium-shot-man-wearing-headphones_23-2148924741.jpg"},
{
name: "Emily R.",
handle: "@emilyr",
testimonial: "Streaming and gaming at the same time without any lag. Impressive performance.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/sad-elder-woman-sofa_23-2149403968.jpg",
},
name: "Emily R.", handle: "@emilyr", testimonial: "Streaming and gaming at the same time without any lag. Impressive performance.", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/sad-elder-woman-sofa_23-2149403968.jpg"},
{
name: "David L.",
handle: "@davidl",
testimonial: "Customer service was great during setup. Very happy with the transition to 6G.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-elderly-woman-bed-holding-smartphone_23-2148419217.jpg",
},
name: "David L.", handle: "@davidl", testimonial: "Customer service was great during setup. Very happy with the transition to 6G.", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/low-angle-elderly-woman-bed-holding-smartphone_23-2148419217.jpg"},
{
name: "James P.",
handle: "@jamesp",
testimonial: "The installation was fast and the connection never drops. Highly recommended.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg?_wi=2",
},
name: "James P.", handle: "@jamesp", testimonial: "The installation was fast and the connection never drops. Highly recommended.", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg"},
]}
buttons={[
{
text: "Get Started",
href: "#products",
},
text: "Get Started", href: "#products"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BmtHO7pPsVdaD5O5vbizRTKXEb/uploaded-1775106152466-x6mer53a.jpg"
imageAlt="WorldLink 6G Router"
mediaAnimation="slide-up"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg",
alt: "User 1",
},
src: "https://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg", alt: "User 1"},
{
src: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-headphones_23-2148924741.jpg",
alt: "User 2",
},
src: "https://img.b2bpic.net/free-photo/medium-shot-man-wearing-headphones_23-2148924741.jpg", alt: "User 2"},
{
src: "http://img.b2bpic.net/free-photo/sad-elder-woman-sofa_23-2149403968.jpg",
alt: "User 3",
},
src: "https://img.b2bpic.net/free-photo/sad-elder-woman-sofa_23-2149403968.jpg", alt: "User 3"},
{
src: "http://img.b2bpic.net/free-photo/low-angle-elderly-woman-bed-holding-smartphone_23-2148419217.jpg",
alt: "User 4",
},
src: "https://img.b2bpic.net/free-photo/low-angle-elderly-woman-bed-holding-smartphone_23-2148419217.jpg", alt: "User 4"},
{
src: "http://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg",
alt: "User 5",
},
src: "https://img.b2bpic.net/free-photo/beautiful-woman-enjoying-work-from-home_23-2148700742.jpg", alt: "User 5"},
]}
marqueeItems={[
{
type: "text",
text: "40% More Coverage",
},
type: "text", text: "40% More Coverage"},
{
type: "text",
text: "6G Technology",
},
type: "text", text: "6G Technology"},
{
type: "text",
text: "Lightning Fast Speed",
},
type: "text", text: "Lightning Fast Speed"},
{
type: "text",
text: "Ultra-Low Latency",
},
type: "text", text: "Ultra-Low Latency"},
{
type: "text",
text: "24/7 Reliability",
},
type: "text", text: "24/7 Reliability"},
]}
/>
</div>
@@ -156,26 +105,11 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
id: "f1",
title: "Enhanced Coverage",
description: "40% more coverage than standard Wi-Fi 5 routers.",
tag: "Coverage",
imageSrc: "http://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg?_wi=1",
},
id: "f1", title: "Enhanced Coverage", description: "40% more coverage than standard Wi-Fi 5 routers.", tag: "Coverage", imageSrc: "https://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg"},
{
id: "f2",
title: "Seamless Performance",
description: "4x throughput improvement for heavy bandwidth usage.",
tag: "Performance",
imageSrc: "http://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg?_wi=2",
},
id: "f2", title: "Seamless Performance", description: "4x throughput improvement for heavy bandwidth usage.", tag: "Performance", imageSrc: "https://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg"},
{
id: "f3",
title: "Ultra Reliability",
description: "Stay connected even during peak usage hours with advanced routing.",
tag: "Stability",
imageSrc: "http://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg?_wi=3",
},
id: "f3", title: "Ultra Reliability", description: "Stay connected even during peak usage hours with advanced routing.", tag: "Stability", imageSrc: "https://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg"},
]}
title="Unmatched Performance"
description="Engineered for speed, stability, and broad coverage."
@@ -190,23 +124,11 @@ export default function LandingPage() {
useInvertedBackground={true}
products={[
{
id: "p1",
name: "Basic 6G",
price: "$29/mo",
imageSrc: "http://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg?_wi=4",
},
id: "p1", name: "Basic 6G", price: "$29/mo", imageSrc: "https://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg"},
{
id: "p2",
name: "Pro 6G",
price: "$49/mo",
imageSrc: "http://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg?_wi=5",
},
id: "p2", name: "Pro 6G", price: "$49/mo", imageSrc: "https://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg"},
{
id: "p3",
name: "Ultimate 6G",
price: "$79/mo",
imageSrc: "http://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg?_wi=6",
},
id: "p3", name: "Ultimate 6G", price: "$79/mo", imageSrc: "https://img.b2bpic.net/free-photo/optical-fibers-lights-green_23-2148241284.jpg"},
]}
title="Choose Your 6G Plan"
description="High-performance internet plans tailored to your needs."
@@ -216,37 +138,20 @@ export default function LandingPage() {
<div id="metrics" data-section="metrics">
<MetricCardSeven
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
metrics={[
{
id: "m1",
value: "40%",
title: "Increased Coverage",
items: [
"Across all models",
"Improved range",
"Dead zones minimized",
],
id: "m1", value: "40%", title: "Increased Coverage", items: [
"Across all models", "Improved range", "Dead zones minimized"],
},
{
id: "m2",
value: "4x",
title: "Bandwidth Throughput",
items: [
"Gaming",
"4K Streaming",
"Low Latency",
],
id: "m2", value: "4x", title: "Bandwidth Throughput", items: [
"Gaming", "4K Streaming", "Low Latency"],
},
{
id: "m3",
value: "99.9%",
title: "Uptime Reliability",
items: [
"24/7 Monitoring",
"Stable connections",
"Secure network",
],
id: "m3", value: "99.9%", title: "Uptime Reliability", items: [
"24/7 Monitoring", "Stable connections", "Secure network"],
},
]}
title="Proven Results"
@@ -258,8 +163,7 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={true}
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
tag="Join Us"
title="Ready to upgrade to 6G?"
description="Leave your email below and our team will contact you shortly to get you connected."
@@ -270,42 +174,27 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "6G Plans",
href: "#products",
},
label: "6G Plans", href: "#products"},
{
label: "Business Internet",
href: "#",
},
label: "Business Internet", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "FAQs",
href: "#",
},
label: "FAQs", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
],
},
]}