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 */}
-