import { useState } from "react"; import { FaRocket, FaShieldAlt, FaClock } from "react-icons/fa"; import { Button } from "@/components/ui/button"; export default function LandingPage() { return (
{/* Header */}

TechStartup

{/* Hero Section */}

Boost Your Productivity

Revolutionize the way you work with cutting-edge technology.

{/* Features Section */}

Key Features

{[{ icon: , title: "Fast Performance", desc: "Experience lightning-fast speed." }, { icon: , title: "Top Security", desc: "Your data is always protected." }, { icon: , title: "24/7 Support", desc: "We're here whenever you need us." }].map((feature, index) => (
{feature.icon}

{feature.title}

{feature.desc}

))}
{/* Call-to-Action */}

Stay Updated

Join our newsletter for the latest news.

{/* Footer */}
); }