Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
261
src/app/page.tsx
261
src/app/page.tsx
@@ -34,21 +34,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Features",
|
||||
id: "#features",
|
||||
},
|
||||
name: "Features", id: "#features"},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "#pricing",
|
||||
},
|
||||
name: "Pricing", id: "#pricing"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Nord Net"
|
||||
/>
|
||||
@@ -57,47 +49,26 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
variant: "rotated-rays-animated"}}
|
||||
title="Empowering Your Digital Infrastructure"
|
||||
description="Nord Net provides cutting-edge network solutions and cloud services for the modern enterprise, ensuring connectivity that never sleeps."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get Started", href: "#contact"},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/data-center-programmers-doing-brainstorming-setting-up-machine-learning-systems_482257-126248.jpg",
|
||||
imageAlt: "tech network nodes",
|
||||
},
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/data-center-programmers-doing-brainstorming-setting-up-machine-learning-systems_482257-126248.jpg", imageAlt: "tech network nodes"},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-right-side-with-white-background_187299-39888.jpg",
|
||||
imageAlt: "modern software dashboard",
|
||||
},
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-right-side-with-white-background_187299-39888.jpg", imageAlt: "modern software dashboard"},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139130.jpg",
|
||||
imageAlt: "server room digital",
|
||||
},
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139130.jpg", imageAlt: "server room digital"},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-black-white-background_23-2150498602.jpg",
|
||||
imageAlt: "cloud computing network",
|
||||
},
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-black-white-background_23-2150498602.jpg", imageAlt: "cloud computing network"},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-low-poly-with-connecting-lines-dots_1048-7721.jpg",
|
||||
imageAlt: "ai neural network",
|
||||
},
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/abstract-low-poly-with-connecting-lines-dots_1048-7721.jpg", imageAlt: "ai neural network"},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-tech-view-futuristic-earth_23-2151100335.jpg",
|
||||
imageAlt: "global network earth",
|
||||
},
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/high-tech-view-futuristic-earth_23-2151100335.jpg", imageAlt: "global network earth"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -123,20 +94,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Global Sync",
|
||||
description: "Seamless data synchronization across all regions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cloud-computing-electronic-chip-board-cloud-computer-is-system-transfer-data-information-upload-download-application-technology-transformation-concept_616485-59.jpg",
|
||||
},
|
||||
title: "Global Sync", description: "Seamless data synchronization across all regions.", imageSrc: "http://img.b2bpic.net/free-photo/cloud-computing-electronic-chip-board-cloud-computer-is-system-transfer-data-information-upload-download-application-technology-transformation-concept_616485-59.jpg"},
|
||||
{
|
||||
title: "Ironclad Security",
|
||||
description: "End-to-end encryption for every packet.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holding-laptop-with-system-error_53876-74780.jpg",
|
||||
},
|
||||
title: "Ironclad Security", description: "End-to-end encryption for every packet.", imageSrc: "http://img.b2bpic.net/free-photo/man-holding-laptop-with-system-error_53876-74780.jpg"},
|
||||
{
|
||||
title: "Real-time Analytics",
|
||||
description: "Instant insights into your infrastructure metrics.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-young-business-man-talking-phone-sitting-his-office-diagrams-monitor_482257-34736.jpg",
|
||||
},
|
||||
title: "Real-time Analytics", description: "Instant insights into your infrastructure metrics.", imageSrc: "http://img.b2bpic.net/free-photo/back-view-young-business-man-talking-phone-sitting-his-office-diagrams-monitor_482257-34736.jpg"},
|
||||
]}
|
||||
title="Why Choose Nord Net?"
|
||||
description="Optimized performance, unmatched security, and global accessibility."
|
||||
@@ -145,46 +107,23 @@ export default function LandingPage() {
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Basic Cloud Sync",
|
||||
price: "$99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349298.jpg",
|
||||
},
|
||||
id: "p1", name: "Basic Cloud Sync", price: "$99", imageSrc: "http://img.b2bpic.net/free-photo/neon-robot-vacuum-cleaner_23-2151349298.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Network Shield",
|
||||
price: "$199",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/product-production-manufacturing-supply-distribution-concept_53876-138508.jpg",
|
||||
},
|
||||
id: "p2", name: "Network Shield", price: "$199", imageSrc: "http://img.b2bpic.net/free-photo/product-production-manufacturing-supply-distribution-concept_53876-138508.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "API Gateway",
|
||||
price: "$299",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-organized-school-supplies-education-day_23-2149241003.jpg",
|
||||
},
|
||||
id: "p3", name: "API Gateway", price: "$299", imageSrc: "http://img.b2bpic.net/free-photo/top-view-organized-school-supplies-education-day_23-2149241003.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Enterprise Hub",
|
||||
price: "$499",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/tech-corporate-business-card-template-design_742173-29303.jpg",
|
||||
},
|
||||
id: "p4", name: "Enterprise Hub", price: "$499", imageSrc: "http://img.b2bpic.net/free-vector/tech-corporate-business-card-template-design_742173-29303.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Bot Automation",
|
||||
price: "$149",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/scientist-using-robotic-hand_23-2149311903.jpg",
|
||||
},
|
||||
id: "p5", name: "Bot Automation", price: "$149", imageSrc: "http://img.b2bpic.net/free-photo/scientist-using-robotic-hand_23-2149311903.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Fast Storage",
|
||||
price: "$89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-clouds-yellow-folder_1048-1658.jpg",
|
||||
},
|
||||
id: "p6", name: "Fast Storage", price: "$89", imageSrc: "http://img.b2bpic.net/free-photo/two-clouds-yellow-folder_1048-1658.jpg"},
|
||||
]}
|
||||
title="Infrastructure Packages"
|
||||
description="Pre-configured solutions to accelerate your deployment."
|
||||
@@ -198,50 +137,27 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
name: "Starter",
|
||||
price: "$49",
|
||||
features: [
|
||||
"50GB Cloud",
|
||||
"24/7 Support",
|
||||
],
|
||||
id: "basic", name: "Starter", price: "$49", features: [
|
||||
"50GB Cloud", "24/7 Support"],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select",
|
||||
href: "#",
|
||||
},
|
||||
text: "Select", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
name: "Professional",
|
||||
price: "$149",
|
||||
features: [
|
||||
"200GB Cloud",
|
||||
"Priority Support",
|
||||
"Analytics",
|
||||
],
|
||||
id: "pro", name: "Professional", price: "$149", features: [
|
||||
"200GB Cloud", "Priority Support", "Analytics"],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select",
|
||||
href: "#",
|
||||
},
|
||||
text: "Select", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
name: "Enterprise",
|
||||
price: "$499",
|
||||
features: [
|
||||
"Unlimited Cloud",
|
||||
"Account Manager",
|
||||
"SLA",
|
||||
],
|
||||
id: "enterprise", name: "Enterprise", price: "$499", features: [
|
||||
"Unlimited Cloud", "Account Manager", "SLA"],
|
||||
buttons: [
|
||||
{
|
||||
text: "Select",
|
||||
href: "#",
|
||||
},
|
||||
text: "Select", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -257,28 +173,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "99.99%",
|
||||
title: "Uptime",
|
||||
items: [
|
||||
"100% SLA Guarantee",
|
||||
],
|
||||
id: "m1", value: "99.99%", title: "Uptime", items: [
|
||||
"100% SLA Guarantee"],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "500+",
|
||||
title: "Clients",
|
||||
items: [
|
||||
"Trusted by Top Tier Tech",
|
||||
],
|
||||
id: "m2", value: "500+", title: "Clients", items: [
|
||||
"Trusted by Top Tier Tech"],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "10TB",
|
||||
title: "Data Transferred",
|
||||
items: [
|
||||
"Per Second Throughput",
|
||||
],
|
||||
id: "m3", value: "10TB", title: "Data Transferred", items: [
|
||||
"Per Second Throughput"],
|
||||
},
|
||||
]}
|
||||
title="Our Impact"
|
||||
@@ -292,45 +196,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Exceptional",
|
||||
quote: "Nord Net transformed our connectivity speed.",
|
||||
name: "Alice Smith",
|
||||
role: "CTO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-man-glasses-is-posing-photographer-studio_613910-2638.jpg",
|
||||
},
|
||||
id: "1", title: "Exceptional", quote: "Nord Net transformed our connectivity speed.", name: "Alice Smith", role: "CTO", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-man-glasses-is-posing-photographer-studio_613910-2638.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Reliable",
|
||||
quote: "Best cloud experience we have ever had.",
|
||||
name: "Bob Johnson",
|
||||
role: "CEO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-engineer-solar-panels-plant-reading-documentation_482257-120499.jpg",
|
||||
},
|
||||
id: "2", title: "Reliable", quote: "Best cloud experience we have ever had.", name: "Bob Johnson", role: "CEO", imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-engineer-solar-panels-plant-reading-documentation_482257-120499.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Seamless",
|
||||
quote: "Scaling with them is an absolute breeze.",
|
||||
name: "Carol White",
|
||||
role: "VP Eng",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-african-american-guy-sitting-table-using-laptop_74855-15139.jpg",
|
||||
},
|
||||
id: "3", title: "Seamless", quote: "Scaling with them is an absolute breeze.", name: "Carol White", role: "VP Eng", imageSrc: "http://img.b2bpic.net/free-photo/content-african-american-guy-sitting-table-using-laptop_74855-15139.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Efficient",
|
||||
quote: "Their infrastructure is rock solid.",
|
||||
name: "David Brown",
|
||||
role: "Eng Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/octogenarian-engineer-crypto-mining-farm-with-specialized-server-racks-using-blockchain-technology-fintech-expert-inspecting-asic-racks-solving-complex-computational-operations-data-center_482257-70453.jpg",
|
||||
},
|
||||
id: "4", title: "Efficient", quote: "Their infrastructure is rock solid.", name: "David Brown", role: "Eng Lead", imageSrc: "http://img.b2bpic.net/free-photo/octogenarian-engineer-crypto-mining-farm-with-specialized-server-racks-using-blockchain-technology-fintech-expert-inspecting-asic-racks-solving-complex-computational-operations-data-center_482257-70453.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
title: "Top Tier",
|
||||
quote: "Fantastic support and reliable uptime.",
|
||||
name: "Eve Davis",
|
||||
role: "Data Analyst",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-content-pretty-businesswoman-glasses_1262-1740.jpg",
|
||||
},
|
||||
id: "5", title: "Top Tier", quote: "Fantastic support and reliable uptime.", name: "Eve Davis", role: "Data Analyst", imageSrc: "http://img.b2bpic.net/free-photo/closeup-content-pretty-businesswoman-glasses_1262-1740.jpg"},
|
||||
]}
|
||||
title="What Tech Leaders Say"
|
||||
description="Trusted by engineering teams across the globe."
|
||||
@@ -342,20 +216,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "What is the uptime?",
|
||||
content: "99.99% Guaranteed SLA.",
|
||||
},
|
||||
id: "f1", title: "What is the uptime?", content: "99.99% Guaranteed SLA."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Is security included?",
|
||||
content: "Yes, full encryption is standard.",
|
||||
},
|
||||
id: "f2", title: "Is security included?", content: "Yes, full encryption is standard."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Can I cancel anytime?",
|
||||
content: "Flexible monthly plans available.",
|
||||
},
|
||||
id: "f3", title: "Can I cancel anytime?", content: "Flexible monthly plans available."},
|
||||
]}
|
||||
sideTitle="Questions? Answers."
|
||||
faqsAnimation="blur-reveal"
|
||||
@@ -366,8 +231,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Start Your Journey"
|
||||
description="Ready to scale your network infrastructure?"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-solar-panels-plant-writing-program-code-tracking-energy-production_482257-119152.jpg"
|
||||
@@ -380,42 +244,27 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Products",
|
||||
items: [
|
||||
title: "Products", items: [
|
||||
{
|
||||
label: "Cloud",
|
||||
href: "#product",
|
||||
},
|
||||
label: "Cloud", href: "#product"},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#pricing",
|
||||
},
|
||||
label: "Pricing", href: "#pricing"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy", href: "#"},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user