import React, { useState, useEffect } from 'react'; import { Smartphone, Globe, Zap, Code, Sparkles, Menu, X, ArrowRight, Check } from 'lucide-react'; export default function LuminaTechLanding() { const [scrolled, setScrolled] = useState(false); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 50); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const products = [ { icon: , title: "Android Apps", description: "Beautiful, performant mobile applications that users love", features: ["Native Performance", "Material Design", "Offline Support"] }, { icon: , title: "Web Tools", description: "Powerful web applications that solve real problems", features: ["Lightning Fast", "Responsive Design", "Cloud-Based"] }, { icon: , title: "Custom Solutions", description: "Tailored software that fits your unique needs", features: ["Scalable", "Secure", "Maintainable"] } ]; return (
{/* Animated background elements */}
{/* Navigation */} {/* Hero Section */}
✨ Building the future, one app at a time

Innovation That
Illuminates

We craft exceptional Android apps and web tools that empower businesses and delight users

{/* Products Section */}

What We Build

Powerful solutions for modern challenges

{products.map((product, idx) => (
{product.icon}

{product.title}

{product.description}

    {product.features.map((feature, i) => (
  • {feature}
  • ))}
))}
{/* Stats Section */}
{[ { number: "50+", label: "Projects Delivered" }, { number: "100K+", label: "Active Users" }, { number: "99%", label: "Client Satisfaction" }, { number: "24/7", label: "Support Available" } ].map((stat, idx) => (
{stat.number}
{stat.label}
))}
{/* CTA Section */}

Ready to Build Something Amazing?

Let's bring your ideas to life with cutting-edge technology and beautiful design

{/* Footer */}
); }