From b7bf97ea513407918b5ce8b512b16d9f1069d013 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 23 Jan 2026 17:23:55 +0000 Subject: [PATCH 1/4] Update src/app/page.tsx --- src/app/page.tsx | 293 +++++++++++++++-------------------------------- 1 file changed, 91 insertions(+), 202 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a410193..2325ce7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,251 +1,140 @@ "use client"; -import React, { useState, useEffect } from 'react'; -import { ChevronRight, Sparkles, Zap, Shield, Rocket, ArrowRight, Star, CheckCircle2, Globe, Users, TrendingUp, Award } from 'lucide-react'; +import { useState } from 'react'; +import { ArrowRight, Sparkles, Star } from 'lucide-react'; export default function HomePage() { - const [isLoaded, setIsLoaded] = useState(false); - const [activeFeature, setActiveFeature] = useState(0); - - useEffect(() => { - setIsLoaded(true); - }, []); + const [isLoaded] = useState(true); const features = [ { - icon: Zap, - title: "Lightning Fast", description: "Optimized performance with cutting-edge technology" + icon: Star, + title: "Premium Quality", description: "Top-tier components built with modern standards" }, { - icon: Shield, - title: "Enterprise Security", description: "Bank-level security protocols to protect your data" + icon: Sparkles, + title: "Easy Integration", description: "Drop-in components that work out of the box" }, { - icon: Rocket, - title: "Scalable Growth", description: "Built to scale with your business needs" + icon: ArrowRight, + title: "Fast Development", description: "Speed up your development workflow" } ]; - 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%" } - ]; - return ( -
- {/* Navigation */} - + {/* Hero Section */} -
-
-
- - New: AI-Powered Analytics Now Available -
-

- Build the Future - - Today - +
+
+

+ Build Beautiful + Web Components

-

- 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. +

+ Create stunning, responsive web components with our premium collection of templates and tools.

- -
-
+ + {/* Features Grid */} +
+ {features.map((feature, index) => { + const IconComponent = feature.icon; + return ( +
+
+ +
+

{feature.title}

+

{feature.description}

+
+ ); + })} +
+ + {/* CTA Section */} +
+

+ Ready to get started? +

+

+ Join thousands of developers building amazing web experiences. +

+ +
+ {/* Footer */} -