Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e1fc2fa489 |
186
src/app/page.tsx
186
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Features",
|
name: "Features", id: "#features"},
|
||||||
id: "#features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Technology",
|
name: "Technology", id: "#tech"},
|
||||||
id: "#tech",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Pricing",
|
name: "Pricing", id: "#pricing"},
|
||||||
id: "#pricing",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Support",
|
name: "Support", id: "#faq"},
|
||||||
id: "#faq",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="NexusStack"
|
brandName="NexusStack"
|
||||||
/>
|
/>
|
||||||
@@ -54,66 +46,41 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
title="Build Faster with FastAPI & MongoDB"
|
title="Build Faster with FastAPI & MongoDB"
|
||||||
description="Unlock high-performance development with our modern tech platform. Secure, scalable, and built for the future of web development."
|
description="Unlock high-performance development with our modern tech platform. Secure, scalable, and built for the future of web development."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Started",
|
text: "Get Started", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Documentation",
|
text: "Documentation", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/business-chart-visual-graphics-report-concept_53876-125580.jpg",
|
src: "http://img.b2bpic.net/free-photo/business-chart-visual-graphics-report-concept_53876-125580.jpg", alt: "Developer profile 1"},
|
||||||
alt: "Developer profile 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/financial-software-ui-pc-screen-apartment-office-desk_482257-122945.jpg",
|
src: "http://img.b2bpic.net/free-photo/financial-software-ui-pc-screen-apartment-office-desk_482257-122945.jpg", alt: "Developer profile 2"},
|
||||||
alt: "Developer profile 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/computers-data-center-running-server-rigs-diagnostic-tests_482257-118495.jpg",
|
src: "http://img.b2bpic.net/free-photo/computers-data-center-running-server-rigs-diagnostic-tests_482257-118495.jpg", alt: "Developer profile 3"},
|
||||||
alt: "Developer profile 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/financial-program-user-interface-pc-screen-home-office-desk_482257-118861.jpg",
|
src: "http://img.b2bpic.net/free-photo/financial-program-user-interface-pc-screen-home-office-desk_482257-118861.jpg", alt: "Developer profile 4"},
|
||||||
alt: "Developer profile 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/remote-woman-working-modern-house-giving-voice-command-tablet-with-smart-home-application-lights-turning_482257-2265.jpg",
|
src: "http://img.b2bpic.net/free-photo/remote-woman-working-modern-house-giving-voice-command-tablet-with-smart-home-application-lights-turning_482257-2265.jpg", alt: "Developer profile 5"},
|
||||||
alt: "Developer profile 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ developers"
|
avatarText="Trusted by 500+ developers"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Fast Performance"},
|
||||||
text: "Fast Performance",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Secure Auth"},
|
||||||
text: "Secure Auth",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Flexible Schema"},
|
||||||
text: "Flexible Schema",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Modern Stack"},
|
||||||
text: "Modern Stack",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Scalable Infrastructure"},
|
||||||
text: "Scalable Infrastructure",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -125,48 +92,27 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", label: "Fast", title: "Reduce API Latency by 50%", items: [
|
||||||
label: "Fast",
|
"Asynchronous performance", "Low latency endpoints", "Real-time data processing"],
|
||||||
title: "Lightning Fast API",
|
|
||||||
items: [
|
|
||||||
"Asynchronous performance",
|
|
||||||
"Low latency endpoints",
|
|
||||||
"Real-time data processing",
|
|
||||||
],
|
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Learn more",
|
text: "Learn more"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", label: "Secure", title: "Advanced Auth", items: [
|
||||||
label: "Secure",
|
"JWT & OAuth2 support", "Role-based permissions", "Enterprise-grade encryption"],
|
||||||
title: "Advanced Auth",
|
|
||||||
items: [
|
|
||||||
"JWT & OAuth2 support",
|
|
||||||
"Role-based permissions",
|
|
||||||
"Enterprise-grade encryption",
|
|
||||||
],
|
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Learn more",
|
text: "Learn more"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", label: "Modern", title: "Flexible Storage", items: [
|
||||||
label: "Modern",
|
"MongoDB optimized queries", "Dynamic schema modeling", "High availability clusters"],
|
||||||
title: "Flexible Storage",
|
|
||||||
items: [
|
|
||||||
"MongoDB optimized queries",
|
|
||||||
"Dynamic schema modeling",
|
|
||||||
"High availability clusters",
|
|
||||||
],
|
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Learn more",
|
text: "Learn more"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -182,20 +128,11 @@ export default function LandingPage() {
|
|||||||
tag="Performance Stats"
|
tag="Performance Stats"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", value: "100ms", description: "Avg API Response"},
|
||||||
value: "100ms",
|
|
||||||
description: "Avg API Response",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", value: "99.9%", description: "Platform Uptime"},
|
||||||
value: "99.9%",
|
|
||||||
description: "Platform Uptime",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", value: "1M+", description: "Requests Managed"},
|
||||||
value: "1M+",
|
|
||||||
description: "Requests Managed",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -208,17 +145,11 @@ export default function LandingPage() {
|
|||||||
description="Built on the most reliable modern technologies: FastAPI, MongoDB, and React."
|
description="Built on the most reliable modern technologies: FastAPI, MongoDB, and React."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
value: "Python",
|
value: "Python", title: "FastAPI Core"},
|
||||||
title: "FastAPI Core",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "NoSQL",
|
value: "NoSQL", title: "MongoDB"},
|
||||||
title: "MongoDB",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "React",
|
value: "React", title: "UI Layer"},
|
||||||
title: "UI Layer",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-laptop_23-2151004294.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-laptop_23-2151004294.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -233,40 +164,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah Miller", handle: "@sarahdev", testimonial: "The performance improvements using FastAPI are unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-gaze-bearded-man_482257-98427.jpg"},
|
||||||
name: "Sarah Miller",
|
|
||||||
handle: "@sarahdev",
|
|
||||||
testimonial: "The performance improvements using FastAPI are unmatched.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-gaze-bearded-man_482257-98427.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Michael Chen", handle: "@mchen", testimonial: "Integration was seamless. Highly recommend this stack.", imageSrc: "http://img.b2bpic.net/free-photo/technician-optimizing-data-center-equipment-maximum-efficiency_482257-117650.jpg"},
|
||||||
name: "Michael Chen",
|
|
||||||
handle: "@mchen",
|
|
||||||
testimonial: "Integration was seamless. Highly recommend this stack.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/technician-optimizing-data-center-equipment-maximum-efficiency_482257-117650.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Jessica Low", handle: "@jesslow", testimonial: "Finally a platform built for modern development.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-desk-table-business-company-office_482257-16773.jpg"},
|
||||||
name: "Jessica Low",
|
|
||||||
handle: "@jesslow",
|
|
||||||
testimonial: "Finally a platform built for modern development.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-desk-table-business-company-office_482257-16773.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "David Kim", handle: "@dkim", testimonial: "Productivity has doubled since we switched.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg"},
|
||||||
name: "David Kim",
|
|
||||||
handle: "@dkim",
|
|
||||||
testimonial: "Productivity has doubled since we switched.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Emma Wilson", handle: "@ewilson", testimonial: "Stellar documentation and reliable support.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-wearing-coat_1098-3778.jpg"},
|
||||||
name: "Emma Wilson",
|
|
||||||
handle: "@ewilson",
|
|
||||||
testimonial: "Stellar documentation and reliable support.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-wearing-coat_1098-3778.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Trusted by Developers"
|
title="Trusted by Developers"
|
||||||
description="The platform that changed our development workflow."
|
description="The platform that changed our development workflow."
|
||||||
@@ -279,20 +185,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "Is this platform scalable?", content: "Yes, our FastAPI and MongoDB stack is built for massive scaling."},
|
||||||
title: "Is this platform scalable?",
|
|
||||||
content: "Yes, our FastAPI and MongoDB stack is built for massive scaling.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "Do you support Authentication?", content: "We offer both JWT and OAuth2 authentication methods built-in."},
|
||||||
title: "Do you support Authentication?",
|
|
||||||
content: "We offer both JWT and OAuth2 authentication methods built-in.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "Is dark mode included?", content: "Yes, full dark mode and multi-language support (Bengali/English) are included."},
|
||||||
title: "Is dark mode included?",
|
|
||||||
content: "Yes, full dark mode and multi-language support (Bengali/English) are included.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Quick answers to common questions."
|
description="Quick answers to common questions."
|
||||||
@@ -304,8 +201,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Contact Us"
|
tag="Contact Us"
|
||||||
title="Get Started Today"
|
title="Get Started Today"
|
||||||
description="Ready to build your next big thing? Let's get in touch."
|
description="Ready to build your next big thing? Let's get in touch."
|
||||||
|
|||||||
Reference in New Issue
Block a user