Files
f9d2f84a-d883-4649-ae92-a63…/src/app/page.tsx
2026-03-13 15:06:56 +00:00

261 lines
13 KiB
TypeScript

"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Brain, Zap, Shield, CheckCircle, Award } from 'lucide-react';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="largeSmallSizeMediumTitles"
background="circleGradient"
cardStyle="soft-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="JARVIS"
navItems={[
{ name: "Capabilities", id: "capabilities" },
{ name: "Features", id: "features" },
{ name: "Performance", id: "performance" },
{ name: "FAQ", id: "faq" }
]}
button={{
text: "Activate System", href: "#contact"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
logoText="JARVIS"
description="Advanced Artificial Intelligence System. Intelligent assistance powered by cutting-edge neural networks and real-time processing capabilities. Experience the future of AI interaction."
background={{ variant: "plain" }}
buttons={[
{ text: "Activate Interface", href: "#about" },
{ text: "Learn More", href: "#features" }
]}
buttonAnimation="blur-reveal"
layoutOrder="default"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtaNZ2N4GKH5LqyUyDq0svhgKR/a-sleek-futuristic-ai-interface-dashboar-1773414339083-4df5f9b5.png"
imageAlt="JARVIS AI Interface Dashboard"
mediaAnimation="slide-up"
frameStyle="browser"
ariaLabel="JARVIS AI System Hero Section"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="Meet JARVIS"
description="JARVIS represents the pinnacle of artificial intelligence technology, designed to understand context, predict needs, and deliver intelligent solutions in real time. Built on advanced neural networks and quantum-inspired processing algorithms, JARVIS learns and adapts to provide increasingly personalized assistance."
tag="Advanced AI Technology"
tagIcon={Award}
tagAnimation="slide-up"
buttons={[
{ text: "Explore Capabilities", href: "#features" }
]}
buttonAnimation="blur-reveal"
bulletPoints={[
{
title: "Intelligent Understanding", description: "Deep contextual awareness powered by advanced natural language processing and semantic analysis", icon: Brain
},
{
title: "Real-Time Processing", description: "Sub-millisecond response times with zero-latency decision making", icon: Zap
},
{
title: "Security First", description: "Military-grade encryption and privacy protocols ensuring complete data protection", icon: Shield
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AtaNZ2N4GKH5LqyUyDq0svhgKR/a-sophisticated-visualization-of-advance-1773414340024-22a4ce95.png"
imageAlt="AI Technology Architecture"
mediaAnimation="blur-reveal"
imagePosition="right"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwelve
title="Core Capabilities"
description="Comprehensive suite of intelligent features engineered for maximum performance and user satisfaction"
tag="Powered by Neural Networks"
tagIcon={Award}
tagAnimation="opacity"
textboxLayout="default"
useInvertedBackground={false}
animationType="scale-rotate"
features={[
{
id: "feature-voice", label: "Voice Interface", title: "Natural Voice Interaction", items: [
"Multi-language support with accent recognition", "Emotional tone analysis for contextual response", "Continuous learning from voice patterns"
]
},
{
id: "feature-learning", label: "Machine Learning", title: "Adaptive Intelligence", items: [
"Self-improving algorithms with each interaction", "Pattern recognition across complex datasets", "Predictive analysis for proactive assistance"
]
},
{
id: "feature-speed", label: "Performance", title: "Lightning-Fast Response", items: [
"Sub-100ms processing latency", "Parallel computation architecture", "Optimized for maximum throughput"
]
}
]}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
title="Performance Excellence"
description="Industry-leading metrics that demonstrate JARVIS's computational superiority and reliability"
tag="System Statistics"
tagIcon={Zap}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
animationType="scale-rotate"
metrics={[
{
id: "metric-accuracy", icon: CheckCircle,
title: "Accuracy Rate", value: "99.97%"
},
{
id: "metric-latency", icon: Zap,
title: "Response Time", value: "47ms"
},
{
id: "metric-uptime", icon: Shield,
title: "System Uptime", value: "99.99%"
},
{
id: "metric-learning", icon: Brain,
title: "Learning Rate", value: "24/7"
}
]}
/>
</div>
<div id="socialproof" data-section="socialproof">
<SocialProofOne
title="Trusted by Global Leaders"
description="JARVIS powers intelligent systems across Fortune 500 companies and leading tech enterprises worldwide"
tag="Industry Trust"
tagIcon={Award}
textboxLayout="default"
useInvertedBackground={false}
names={[
"TechCorp Industries", "Quantum Systems Inc", "Neural Dynamics LLC", "Apex Technologies", "Titan AI Solutions", "Vertex Innovation Group", "Nexus Global Systems"
]}
speed={40}
showCard={true}
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
sideTitle="Frequently Asked Questions"
sideDescription="Get answers to common questions about JARVIS capabilities, integration, and performance"
buttons={[
{ text: "Contact Support", href: "#contact" }
]}
buttonAnimation="blur-reveal"
faqsAnimation="opacity"
textPosition="left"
useInvertedBackground={true}
showCard={true}
faqs={[
{
id: "faq-1", title: "How does JARVIS achieve sub-100ms latency?", content: "JARVIS utilizes quantum-inspired parallel processing architecture combined with predictive caching algorithms. Our distributed edge computing infrastructure ensures data never travels far from processing nodes, enabling near-instantaneous response times regardless of query complexity."
},
{
id: "faq-2", title: "What languages does JARVIS support?", content: "JARVIS currently supports 127 languages with native accent recognition and regional dialect adaptation. Our neural language models are continuously updated to understand cultural context, idioms, and evolving linguistic patterns."
},
{
id: "faq-3", title: "How is my data protected?", content: "All data is protected with AES-256 encryption at rest and TLS 1.3 encryption in transit. JARVIS implements zero-knowledge architecture where sensitive information is processed in isolated environments without permanent storage. Regular security audits and compliance certifications ensure enterprise-grade protection."
},
{
id: "faq-4", title: "Can JARVIS integrate with existing systems?", content: "Yes, JARVIS provides comprehensive APIs and webhooks for seamless integration with existing enterprise systems. We offer SDKs for Python, JavaScript, Java, and Go, plus pre-built connectors for major platforms including Salesforce, SAP, and custom databases."
},
{
id: "faq-5", title: "How does continuous learning work?", content: "JARVIS learns from anonymized interaction patterns and user feedback to continuously improve response quality. Machine learning models are updated in real-time using federated learning techniques that respect privacy while enabling intelligent adaptation."
},
{
id: "faq-6", title: "What is the deployment model?", content: "JARVIS is available as a cloud-hosted SaaS solution, private cloud deployment, or on-premises installation. Choose the model that best fits your security and compliance requirements, with guaranteed performance across all deployment options."
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to experience intelligent assistance like never before? Activate your JARVIS system today and transform how you work."
animationType="reveal-blur"
buttons={[
{ text: "Start Free Trial", href: "#" },
{ text: "Schedule Demo", href: "#" }
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Capabilities", href: "#capabilities" },
{ label: "Performance", href: "#performance" },
{ label: "Pricing", href: "#pricing" }
]
},
{
title: "Company", items: [
{ label: "About JARVIS", href: "#about" },
{ label: "Blog", href: "#blog" },
{ label: "Careers", href: "#careers" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Resources", items: [
{ label: "Documentation", href: "#docs" },
{ label: "API Reference", href: "#api" },
{ label: "Support", href: "#support" },
{ label: "Status", href: "#status" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#privacy" },
{ label: "Terms of Service", href: "#terms" },
{ label: "Security", href: "#security" },
{ label: "Compliance", href: "#compliance" }
]
}
]}
copyrightText="© 2024 JARVIS AI Systems. Powered by Advanced Neural Networks. All rights reserved."
/>
</div>
</ThemeProvider>
);
}