273 lines
17 KiB
TypeScript
273 lines
17 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
|
import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
|
|
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
|
import { Brain, Sparkles, TrendingUp, Users, Zap } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="smallMedium"
|
|
sizing="largeSmallSizeLargeTitles"
|
|
background="floatingGradient"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="bold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
brandName="AI Agents"
|
|
navItems={[
|
|
{ name: "Features", id: "features" },
|
|
{ name: "Solutions", id: "solutions" },
|
|
{ name: "Metrics", id: "metrics" },
|
|
{ name: "Testimonials", id: "testimonials" }
|
|
]}
|
|
button={{
|
|
text: "Get Started", href: "#contact"
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardTestimonial
|
|
title="AI Agents That Transform Your Business"
|
|
description="Unlock unprecedented efficiency with intelligent AI agents designed to automate, optimize, and accelerate your operations. Deploy sophisticated automation in minutes, not months."
|
|
background={{ variant: "animated-grid" }}
|
|
tag="Next Generation AI"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
buttons={[
|
|
{ text: "Start Free Trial", href: "#contact" },
|
|
{ text: "View Demo", href: "#solutions" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/a-futuristic-ai-agents-dashboard-interfa-1773624825665-43b2a35c.png"
|
|
imageAlt="AI Agents Dashboard Interface"
|
|
mediaAnimation="slide-up"
|
|
testimonials={[
|
|
{
|
|
name: "Sarah Chen", handle: "@sarahchen_ai", testimonial: "Reduced our operational costs by 65% in just 3 months using AI Agents.", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-confident-bus-1773624822846-174db178.png", imageAlt: "Professional headshot of a confident business executive in modern office setting. High-quality corpo"
|
|
},
|
|
{
|
|
name: "Marcus Rodriguez", handle: "@mrodriguez_tech", testimonial: "The most intuitive AI platform we've ever implemented. Game-changing.", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-tech-professi-1773624822613-5ec5c548.png", imageAlt: "Professional headshot of a tech professional in modern setting. Clean, modern photography with tech-"
|
|
},
|
|
{
|
|
name: "Emily Watson", handle: "@emily_watson_io", testimonial: "Our team productivity increased by 3x. Absolutely revolutionary.", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-product-manag-1773624822732-41a970f6.png", imageAlt: "Professional headshot of a product manager in modern office. High-quality corporate photography, pro"
|
|
}
|
|
]}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardSixteen
|
|
title="Why Choose Our AI Agents Platform"
|
|
description="Built for enterprises that demand excellence. Our AI agents combine cutting-edge technology with enterprise-grade reliability."
|
|
tag="Platform Advantages"
|
|
tagIcon={Zap}
|
|
tagAnimation="slide-up"
|
|
negativeCard={{
|
|
items: [
|
|
"Complex manual processes", "Constant human oversight", "High operational costs", "Slow adaptation to changes"
|
|
]
|
|
}}
|
|
positiveCard={{
|
|
items: [
|
|
"Fully automated workflows", "Intelligent self-management", "80% cost reduction", "Real-time optimization"
|
|
]
|
|
}}
|
|
textboxLayout="split"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="solutions" data-section="solutions">
|
|
<ProductCardTwo
|
|
title="AI Agent Solutions"
|
|
description="Enterprise-grade AI agents engineered to handle your most critical business processes. From customer service to data analysis, we've got you covered."
|
|
tag="Intelligent Solutions"
|
|
tagIcon={Brain}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="bento-grid"
|
|
animationType="scale-rotate"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{
|
|
id: "agent-1", brand: "Customer Intelligence", name: "Service AI Agent", price: "Enterprise", rating: 5,
|
|
reviewCount: "2.4k reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/customer-service-ai-agent-interface-show-1773624824221-4a31739d.png", imageAlt: "Customer Service AI Agent"
|
|
},
|
|
{
|
|
id: "agent-2", brand: "Analytics Platform", name: "Data AI Agent", price: "Enterprise", rating: 5,
|
|
reviewCount: "1.9k reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/data-analysis-ai-agent-showing-advanced--1773624823450-d9ae1294.png", imageAlt: "Data Analysis AI Agent"
|
|
},
|
|
{
|
|
id: "agent-3", brand: "Content Creation", name: "Creator AI Agent", price: "Enterprise", rating: 5,
|
|
reviewCount: "1.7k reviews", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/content-generation-ai-agent-workspace-sh-1773624824083-c17f0eaf.png", imageAlt: "Content Generation AI Agent"
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardEleven
|
|
title="Proven Results From Leading Enterprises"
|
|
description="Our AI agents deliver measurable impact across industries. See the transformative power of intelligent automation."
|
|
tag="Impact Metrics"
|
|
tagIcon={TrendingUp}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
animationType="scale-rotate"
|
|
useInvertedBackground={false}
|
|
metrics={[
|
|
{
|
|
id: "metric-1", value: "78%", title: "Cost Reduction", description: "Average operational expense decrease across enterprise clients", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/efficiency-improvement-visualization-sho-1773624823713-e77b8af5.png", imageAlt: "Efficiency improvement visualization showing productivity gains, performance metrics, and optimizati"
|
|
},
|
|
{
|
|
id: "metric-2", value: "3.5x", title: "Productivity Gain", description: "Team productivity multiplier after AI agent deployment", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/automation-scale-illustration-showing-ma-1773624823637-e98787ff.png", imageAlt: "Automation scale illustration showing massive workflow automation, process reduction, and system opt"
|
|
},
|
|
{
|
|
id: "metric-3", value: "2,400+", title: "Active Enterprises", description: "Leading companies trusting our AI agent platform", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/efficiency-improvement-visualization-sho-1773624823713-e77b8af5.png", imageAlt: "Active enterprises visualization showing company growth and adoption metrics"
|
|
},
|
|
{
|
|
id: "metric-4", value: "99.9%", title: "Uptime SLA", description: "Enterprise-grade reliability and 24/7 support", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/automation-scale-illustration-showing-ma-1773624823637-e98787ff.png", imageAlt: "Uptime SLA reliability metrics showing 99.9% service availability"
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="social-proof" data-section="social-proof">
|
|
<SocialProofOne
|
|
title="Trusted By Industry Leaders"
|
|
description="Join thousands of forward-thinking enterprises using our AI agents to drive transformation."
|
|
names={[
|
|
"TechCorp", "Innovate Labs", "Nexus Systems", "Synergy Solutions", "Apex Technologies", "Quantum Intelligence", "Catalyst Ventures"
|
|
]}
|
|
logos={[
|
|
"http://img.b2bpic.net/free-vector/gradient-technology-logo-collection_23-2148163556.jpg", "http://img.b2bpic.net/free-vector/gradient-technology-logo-template-collection_23-2148221684.jpg", "http://img.b2bpic.net/free-vector/collection-technology-logos_23-2147532076.jpg", "http://img.b2bpic.net/free-vector/geometrical-charity-logo_1025-698.jpg", "http://img.b2bpic.net/free-vector/creative-gradient-logo-collection_52683-58745.jpg", "http://img.b2bpic.net/free-vector/technology-logo-background_23-2148155489.jpg", "http://img.b2bpic.net/free-vector/gradient-technology-logo_52683-8523.jpg"
|
|
]}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
showCard={true}
|
|
speed={30}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardOne
|
|
title="What Enterprise Leaders Say"
|
|
description="Real testimonials from CIOs, CTOs, and business leaders who've transformed their organizations with our AI agents."
|
|
tag="Customer Stories"
|
|
tagIcon={Users}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="bento-grid"
|
|
animationType="scale-rotate"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "test-1", name: "Dr. Alexandra Zhang", role: "CTO", company: "TechCorp International", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-confident-bus-1773624822846-174db178.png", imageAlt: "Professional headshot of a confident business executive in modern office setting. High-quality corpo"
|
|
},
|
|
{
|
|
id: "test-2", name: "James Mitchell", role: "VP Engineering", company: "Innovate Labs", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-tech-professi-1773624822613-5ec5c548.png", imageAlt: "Professional headshot of a tech professional in modern setting. Clean, modern photography with tech-"
|
|
},
|
|
{
|
|
id: "test-3", name: "Priya Kapoor", role: "Chief Innovation Officer", company: "Nexus Systems", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-product-manag-1773624822732-41a970f6.png", imageAlt: "Professional headshot of a product manager in modern office. High-quality corporate photography, pro"
|
|
},
|
|
{
|
|
id: "test-4", name: "Robert Chen", role: "CEO", company: "Synergy Solutions", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-startup-found-1773624823389-1c9f5dcd.png", imageAlt: "Professional headshot of a startup founder. Modern, contemporary business photography with tech-forw"
|
|
},
|
|
{
|
|
id: "test-5", name: "Victoria Santos", role: "Chief Digital Officer", company: "Apex Technologies", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-business-cons-1773624823152-71bf2dd6.png", imageAlt: "Professional headshot of a business consultant. Clean, modern photography with professional styling "
|
|
},
|
|
{
|
|
id: "test-6", name: "Michael Okonkwo", role: "Director of Operations", company: "Quantum Intelligence", rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/professional-headshot-of-a-technology-di-1773624823056-8650f52a.png", imageAlt: "Professional headshot of a technology director. Modern corporate photography, professional attire, c"
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCTA
|
|
tag="Ready to Transform?"
|
|
title="Start Your AI Agent Journey Today"
|
|
description="Join leading enterprises in revolutionizing their operations. Get started with our 14-day free trial—no credit card required."
|
|
buttons={[
|
|
{ text: "Start Free Trial", href: "#" },
|
|
{ text: "Schedule Demo", href: "#" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
background={{ variant: "radial-gradient" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
logoText="AI Agents"
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B0SxQxwaNqtm0Ryj92xXGq5BUv/modern-technology-abstract-footer-image--1773624823341-26b4af1e.png"
|
|
imageAlt="AI Agents - Transform Your Business"
|
|
copyrightText="© 2025 AI Agents Platform. All rights reserved."
|
|
columns={[
|
|
{
|
|
title: "Product", items: [
|
|
{ label: "Features", href: "#features" },
|
|
{ label: "Solutions", href: "#solutions" },
|
|
{ label: "Pricing", href: "#" },
|
|
{ label: "API Docs", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About", href: "#" },
|
|
{ label: "Blog", href: "#" },
|
|
{ label: "Careers", href: "#" },
|
|
{ label: "Contact", href: "#contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Resources", items: [
|
|
{ label: "Documentation", href: "#" },
|
|
{ label: "Webinars", href: "#" },
|
|
{ label: "Case Studies", href: "#" },
|
|
{ label: "Support", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Security", href: "#" },
|
|
{ label: "Compliance", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|