From 32b32d4460be86d5827de0237850b045b7092aba Mon Sep 17 00:00:00 2001 From: development Date: Fri, 23 Jan 2026 17:22:09 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 459 +++++++++++++++++++++++++---------------------- 1 file changed, 240 insertions(+), 219 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 90b5cac..a410193 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,233 +1,254 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; -import BlogCardOne from '@/components/sections/blog/BlogCardOne'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import React, { useState, useEffect } from 'react'; +import { ChevronRight, Sparkles, Zap, Shield, Rocket, ArrowRight, Star, CheckCircle2, Globe, Users, TrendingUp, Award } from 'lucide-react'; + +export default function HomePage() { + const [isLoaded, setIsLoaded] = useState(false); + const [activeFeature, setActiveFeature] = useState(0); + + useEffect(() => { + setIsLoaded(true); + }, []); + + const features = [ + { + icon: Zap, + title: "Lightning Fast", description: "Optimized performance with cutting-edge technology" + }, + { + icon: Shield, + title: "Enterprise Security", description: "Bank-level security protocols to protect your data" + }, + { + icon: Rocket, + title: "Scalable Growth", description: "Built to scale with your business needs" + } + ]; + + const testimonials = [ + { + name: "Sarah Chen", role: "CTO at TechCorp", content: "This platform transformed our workflow completely. The efficiency gains are incredible.", rating: 5 + }, + { + name: "Michael Rodriguez", role: "Product Manager", content: "Best decision we made this year. The ROI was immediate and substantial.", rating: 5 + }, + { + name: "Emily Johnson", role: "Startup Founder", content: "Simple, powerful, and exactly what we needed to scale our operations.", rating: 5 + } + ]; + + const stats = [ + { label: "Active Users", value: "10M+" }, + { label: "Success Rate", value: "99.9%" }, + { label: "Countries", value: "150+" }, + { label: "Uptime", value: "99.99%" } + ]; -export default function LandingPage() { return ( - - +
+ {/* Navigation */} + -
- -
+ {/* Hero Section */} +
+
+
+ + New: AI-Powered Analytics Now Available +
+

+ Build the Future + + Today + +

+

+ Transform your business with our cutting-edge platform. Streamline operations, + boost productivity, and unlock unprecedented growth opportunities. +

+
+ + +
-
- -
+ {/* Stats */} +
+ {stats.map((stat, index) => ( +
+
{stat.value}
+
{stat.label}
+
+ ))} +
+
+
-
- -
+ {/* Features Section */} +
+
+
+

+ Powerful Features +

+

+ Everything you need to succeed, built with modern technology and designed for scale. +

+
-
- -
+
+ {features.map((feature, index) => { + const IconComponent = feature.icon; + return ( +
setActiveFeature(index)} + > + +

{feature.title}

+

{feature.description}

+
+ ); + })} +
+
+
-
- -
+ {/* Testimonials Section */} +
+
+
+

+ Loved by Thousands +

+

+ See what our customers are saying about their experience. +

+
-
- -
+
+ {testimonials.map((testimonial, index) => ( +
+
+ {[...Array(testimonial.rating)].map((_, i) => ( + + ))} +
+

"{testimonial.content}"

+
+
+ {testimonial.name.charAt(0)} +
+
+
{testimonial.name}
+
{testimonial.role}
+
+
+
+ ))} +
+
+
-
- -
+ {/* CTA Section */} +
+
+

+ Ready to Get Started? +

+

+ Join thousands of satisfied customers and transform your business today. +

+
+ + +
+
+
- - + {/* Footer */} + +
); } \ No newline at end of file -- 2.49.1