import { useState } from "react"; import { Zap, MousePointerClick, Smartphone, Headphones, Trophy } from "lucide-react"; import stadiumBg from "@/assets/stadium-bg.jpg"; import soccerBall from "@/assets/soccer-ball.png"; import { Countdown } from "@/components/Countdown"; import { CtaButton } from "@/components/CtaButton"; // Ganti link tujuan redirect di sini const REDIRECT_URL = "https://contoh-link-daftar.com"; const benefits = [ { icon: Zap, title: "Proses Daftar Cepat", desc: "Hanya butuh beberapa detik untuk bergabung." }, { icon: MousePointerClick, title: "Akses Mudah", desc: "Satu klik langsung ke halaman pendaftaran." }, { icon: Smartphone, title: "Mobile Friendly", desc: "Tampil sempurna di semua perangkat." }, { icon: Headphones, title: "Support 24 Jam", desc: "Tim siap membantu Anda kapan saja." }, ]; const Index = () => { const [loading, setLoading] = useState(false); const handleRedirect = () => { if (loading) return; setLoading(true); setTimeout(() => { window.location.href = REDIRECT_URL; }, 1200); }; return (
{/* Background */}
Stadion sepak bola dengan lampu sorot merah
{/* Header */}
Daftar Sekarang
Live Now
{/* Hero */}
🔥 Penawaran Terbatas

Gabung Sekarang &{" "} Rasakan Keseruannya!

Klik tombol di bawah untuk menuju halaman pendaftaran resmi. Proses cepat, aman, dan langsung bisa digunakan.

{/* Ball */}
Bola sepak
{/* Benefits */}

Kenapa Bergabung?

Nikmati keuntungan eksklusif dengan satu kali klik pendaftaran.

{benefits.map((b, i) => (

{b.title}

{b.desc}

))}
{/* Bottom CTA */}

Siap{" "} Memulai ?

Jangan lewatkan kesempatan emas ini. Klik tombol dan langsung bergabung sekarang juga!

{/* Footer */}
); }; export default Index;