import React, { useState, useEffect } from 'react'; import { Flame, Mail, ArrowRight, Sparkles, Globe, MessageSquare, Video } from 'lucide-react'; const globalStyles = ` @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } } @keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(65, 143, 222, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(65, 143, 222, 0); } 100% { box-shadow: 0 0 0 0 rgba(65, 143, 222, 0); } } .animate-float { animation: float 6s ease-in-out infinite; } .animate-float-delayed { animation: float 6s ease-in-out 3s infinite; } .glass-panel { background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.1); } `; export default function LandingPage() { const [email, setEmail] = useState(''); const [submitted, setSubmitted] = useState(false); const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); const handleSubmit = (e) => { e.preventDefault(); if (email) { // Here you would normally send the email to your backend (e.g., Firebase, Supabase) setSubmitted(true); setEmail(''); } }; return (
{/* Background Ambient Glows */}
{/* Floating UI Elements (Background) */}
News & Updates
Diaspora Discussions
{/* Main Content */}
{/* Logo */}
{/* Status Badge */}
IN ACTIVE DEVELOPMENT
{/* Headlines */}

Qarxis

The Front Page of the
Global Somali Community.

We're building the ultimate high-tech hub to share breaking news, discuss diaspora life, debate, and connect with Somalis around the globe. Get ready to drop a Qarxis.

{/* Waitlist Form / Success Message */}
{submitted ? (
You're on the list! We'll notify you when we launch.
) : (
setEmail(e.target.value)} placeholder="Enter your email address..." className="w-full bg-slate-900/50 border border-slate-700/50 text-white rounded-xl sm:rounded-full py-4 pl-12 pr-4 focus:outline-none focus:ring-2 focus:ring-[#418FDE]/50 focus:border-[#418FDE] transition-all placeholder-gray-500" required />
)}
{/* Footer info */}

© 2026 Qarxis Networks. Coming soon to Web, iOS, and Android.

); }