Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 186f3f2799 | |||
| ff9878fb38 | |||
| de0bc1eb88 |
45
src/app/inscription/page.tsx
Normal file
45
src/app/inscription/page.tsx
Normal file
@@ -0,0 +1,45 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function InscriptionPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Inscription", id: "/inscription" },
|
||||
]}
|
||||
brandName="NexusAI"
|
||||
/>
|
||||
</div>
|
||||
<main className="pt-32">
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Inscription"
|
||||
title="Commencez votre croissance"
|
||||
description="Inscrivez-vous pour rejoindre la plateforme."
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
</main>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
179
src/app/page.tsx
179
src/app/page.tsx
@@ -30,22 +30,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Capabilities",
|
||||
id: "#features",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "#pricing",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Services", id: "#about" },
|
||||
{ name: "Capabilities", id: "#features" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
{ name: "Inscription", id: "/inscription" },
|
||||
]}
|
||||
brandName="NexusAI"
|
||||
/>
|
||||
@@ -53,33 +42,18 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Scale Your PME with Autonomous AI-Driven Growth"
|
||||
description="We bridge the gap between human strategy and autonomous scaling. Custom web creation, performance marketing, and data-driven intelligence for elite growth engines."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah J.",
|
||||
handle: "@scale_inc",
|
||||
testimonial: "NexusAI doubled our conversion rates in 30 days. Truly autonomous scaling.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/portrait-of-a-tech-business-executive-cl-1774615195199-65c9d113.png",
|
||||
},
|
||||
name: "Sarah J.", handle: "@scale_inc", testimonial: "NexusAI doubled our conversion rates in 30 days. Truly autonomous scaling.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/portrait-of-a-tech-business-executive-cl-1774615195199-65c9d113.png"},
|
||||
{
|
||||
name: "Marc T.",
|
||||
handle: "@ecommerce_g",
|
||||
testimonial: "The AI marketing agents manage our SEO better than any human team could.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/portrait-of-a-male-entrepreneur-in-a-mod-1774615190972-adbf867b.png",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Deploy Your Agent",
|
||||
href: "#contact",
|
||||
},
|
||||
name: "Marc T.", handle: "@ecommerce_g", testimonial: "The AI marketing agents manage our SEO better than any human team could.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/portrait-of-a-male-entrepreneur-in-a-mod-1774615190972-adbf867b.png"},
|
||||
]}
|
||||
buttons={[{ text: "Deploy Your Agent", href: "/inscription" }]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/a-hyper-futuristic-ai-neural-network-int-1774615194319-ccde81b1.png"
|
||||
/>
|
||||
</div>
|
||||
@@ -91,18 +65,9 @@ export default function LandingPage() {
|
||||
title="Strategy Meets Autonomous Scale"
|
||||
description="We design high-converting SaaS platforms and execute performance marketing. Our stack is managed by proprietary AI, ensuring your growth remains optimized 24/7."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Web Creation",
|
||||
description: "High-performance SaaS and web engines.",
|
||||
},
|
||||
{
|
||||
title: "AI Growth Agents",
|
||||
description: "Autonomous agents optimized for your KPIs.",
|
||||
},
|
||||
{
|
||||
title: "Data Intelligence",
|
||||
description: "Data-scientist level insights, fully automated.",
|
||||
},
|
||||
{ title: "Web Creation", description: "High-performance SaaS and web engines." },
|
||||
{ title: "AI Growth Agents", description: "Autonomous agents optimized for your KPIs." },
|
||||
{ title: "Data Intelligence", description: "Data-scientist level insights, fully automated." },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/a-person-working-on-a-sleek-holographic--1774615193677-0e184558.png"
|
||||
mediaAnimation="blur-reveal"
|
||||
@@ -115,21 +80,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Digital Marketing",
|
||||
description: "Autonomous SEO and copywriting engines.",
|
||||
icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Performance SaaS",
|
||||
description: "Scalable platforms for 1M+ users.",
|
||||
icon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Data Science",
|
||||
description: "Real-time automated business intelligence.",
|
||||
icon: Star,
|
||||
},
|
||||
{ title: "Digital Marketing", description: "Autonomous SEO and copywriting engines.", icon: Zap },
|
||||
{ title: "Performance SaaS", description: "Scalable platforms for 1M+ users.", icon: Shield },
|
||||
{ title: "Data Science", description: "Real-time automated business intelligence.", icon: Star },
|
||||
]}
|
||||
title="Full Stack Operations"
|
||||
description="Everything your PME or E-commerce business needs to dominate the market."
|
||||
@@ -143,32 +96,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "p1",
|
||||
title: "PME Growth",
|
||||
price: "$3,500/mo",
|
||||
period: "Ongoing",
|
||||
features: [
|
||||
"Full Web SaaS",
|
||||
"Marketing Automation",
|
||||
"AI Growth Agent",
|
||||
],
|
||||
button: {
|
||||
text: "Get Started",
|
||||
},
|
||||
id: "p1", title: "PME Growth", price: "$3,500/mo", period: "Ongoing", features: ["Full Web SaaS", "Marketing Automation", "AI Growth Agent"],
|
||||
button: { text: "Get Started", href: "/inscription" },
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
title: "E-Com Scale",
|
||||
price: "$2,000/mo",
|
||||
period: "Ongoing",
|
||||
features: [
|
||||
"SEO Optimization",
|
||||
"Copywriting AI",
|
||||
"Analytics Dashboard",
|
||||
],
|
||||
button: {
|
||||
text: "Get Started",
|
||||
},
|
||||
id: "p2", title: "E-Com Scale", price: "$2,000/mo", period: "Ongoing", features: ["SEO Optimization", "Copywriting AI", "Analytics Dashboard"],
|
||||
button: { text: "Get Started", href: "/inscription" },
|
||||
},
|
||||
]}
|
||||
title="Select Your Growth Tier"
|
||||
@@ -182,38 +115,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@scale",
|
||||
testimonial: "NexusAI changed everything.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615191320-b5c4a62e.png",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marc T.",
|
||||
handle: "@ecommerce",
|
||||
testimonial: "Best ROI ever.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615190413-d7b2bcba.png",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Chloe B.",
|
||||
handle: "@brand",
|
||||
testimonial: "Truly autonomous.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615190754-b66004e6.png",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David L.",
|
||||
handle: "@tech",
|
||||
testimonial: "Game changer.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615195377-88174ba3.png",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", handle: "@scale", testimonial: "NexusAI changed everything.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615191320-b5c4a62e.png" },
|
||||
{ id: "2", name: "Marc T.", handle: "@ecommerce", testimonial: "Best ROI ever.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615190413-d7b2bcba.png" },
|
||||
{ id: "3", name: "Chloe B.", handle: "@brand", testimonial: "Truly autonomous.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615190754-b66004e6.png" },
|
||||
{ id: "4", name: "David L.", handle: "@tech", testimonial: "Game changer.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWqNPXVEaNs3UViHGFFeh35m9C/abstract-dark-background-with-light-refr-1774615195377-88174ba3.png" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Trusted by Elite Leaders"
|
||||
@@ -224,9 +129,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Ready to Scale?"
|
||||
title="Talk to Our Lead Architect"
|
||||
description="Book a discovery call to audit your current stack and see how our agents can take over."
|
||||
@@ -237,36 +140,12 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#features",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#features" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user