"use client"; import { motion, useScroll, useTransform } from 'framer-motion'; import { Rocket, Target, Zap, ShieldCheck, Cpu, ChevronRight } from 'lucide-react'; import Link from 'next/link'; import dynamic from 'next/dynamic'; const Hero3D = dynamic(() => import('@/components/Hero3D'), { ssr: false }); const features = [ { icon: Target, title: "Always-On Radar", description: "Monitors dozens of auction sites simultaneously. The engine never sleeps, so you never miss an ending lot.", color: "text-blue-500", bg: "bg-blue-500/10" }, { icon: Cpu, title: "AI-Grade Filtering", description: "External LLMs score and filter every lot against your precise custom targets. We drop the noise and show only true deals.", color: "text-purple-500", bg: "bg-purple-500/10" }, { icon: Zap, title: "Real-Time Comms", description: "Instant alerts delivered via Telegram, Discord, or Email the minute a high-value lot appears or is about to close.", color: "text-yellow-500", bg: "bg-yellow-500/10" }, { icon: ShieldCheck, title: "Stealth Engine", description: "Human-like browsing algorithms bypass standard detection, ensuring reliable intelligence gathering from any platform.", color: "text-green-500", bg: "bg-green-500/10" } ]; export default function LandingPage() { const { scrollYProgress } = useScroll(); const yHero = useTransform(scrollYProgress, [0, 1], ["0%", "50%"]); const opacityHero = useTransform(scrollYProgress, [0, 0.2], [1, 0]); return (
{/* Dynamic 3D Background */}
{/* Dynamic Background Blob Elements */}
{/* Hero Section */}
System v5 Neural Engine Online

The AI Sniper That
Never Sleeps

BidWraith watches every global auction site, scores every lot with deep AI, and alerts you the moment a real deal drops. Get the ultimate edge.

Initialize Console Explore Tech
{/* Stats Strip with Scroll Reveal */}
{[ { label: 'Uptime', value: '24/7', color: 'text-primary' }, { label: 'Alert Latency', value: '< 1s', color: 'text-accent' }, { label: 'API Endpoints', value: '42', color: 'text-blue-500' }, { label: 'Stealth Rate', value: '100%', color: 'text-green-500' } ].map((stat, i) => ( {stat.value}
{stat.label}
))}
{/* Features Section */}

Core Capabilities

Advanced architecture designed to give you an unfair advantage in the global market.

{features.map((feature, idx) => (

{feature.title}

{feature.description}

))}
{/* Footer CTA with 3D feel */}

Ready to dominate?

Start Sniping Now
); }