import React from "react"; // HotLanding.jsx // Página React de una sola pieza - lista para pegársela a tu proyecto // Requiere Tailwind CSS en el proyecto (clases usadas ampliamente) export default function HotLanding() { return (
{/* Background flame glow */}

Tope de Wapa

{/* Left: Hero text */}

La web más caliente de la ciudad

Coches potentes, estética que rompe pupilas y animaciones que prenden todo. Entra y deja que el espectáculo hable por sí mismo.

{/* Right: Visual stage with cars and flames */}
{/* Road */}
{/* Flame columns (SVG) */}
{/* Cars sliding */}
{/* Sparks */}
{/* Center badge */}
Furia & Estilo
{/* Footer strip */}
Galería épica — 24/7
Síguenos: @tope_de_wapa
Diseñado para impresionar • Hecho con 🔥
{/* Styles */}
); } function Stat({ label, value }) { return (
{label}
{value}
); } function FlameLarge() { return ( ); } function CarStrip({ yPercent = 70, delay = 0, size = 1, direction = 'right' }) { const animName = direction === 'right' ? 'slide-right' : 'slide-left'; const style = { top: `${yPercent}%`, animation: `${animName} 8s linear ${delay}ms infinite`, transformOrigin: 'left center', }; return (
); } function CarSVG({ scale = 1 }) { return (
{/* Headlights glow */}
); }