import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Mail, Phone, Lock, Laptop } from "lucide-react"; import { motion } from "framer-motion"; export default function Home() { return (
{/* Header */}

licence.host

{/* Hero Section */}

Your Trusted License Provider

We provide genuine software licenses with instant delivery and secure payment options.

{/* Services */}

Our Services

{['Windows License', 'Office Activation', 'Antivirus Protection'].map((title, i) => (

{title}

High-quality genuine license keys for your software needs.

))}
{/* Pricing */}

Pricing Plans

{['Basic', 'Pro', 'Enterprise'].map((plan, i) => (

{plan}

Perfect for {plan === 'Basic' ? 'individuals' : plan === 'Pro' ? 'small businesses' : 'large enterprises'}.

${(i + 1) * 10}.00

))}
{/* FAQ */}

Frequently Asked Questions

How fast do I receive my license?

Most licenses are delivered instantly to your email after payment.

Is your software genuine?

Yes, all licenses are 100% genuine and verified with the provider.

{/* Contact */}

Contact Us

} /> } />
{/* Footer */}
); }