/* ─── CTA + FOOTER + APP ─── */
const { C: aC, FONTS: aF } = window.LT;
function Inscription() {
return (
Tu lugar te espera
Inscribite
ahora
Elegí tu distancia, completá tus datos y asegurá tu lugar en la 5ª edición de Love Trail.
💳
MERCADO PAGO
Precio full
Confirmación inmediata
🏦
TRANSFERENCIA
20% OFF
Verificación 72 hs
Al inscribirte aceptás los{" "}
Términos,
el Deslinde y
la Política de Privacidad.
);
}
function Footer() {
return (
);
}
/* ── APP ── */
function App() {
const [selectedDist, setSelectedDist] = React.useState(0);
const Navbar = window.LTNavbar;
const Hero = window.LTHero;
const Distances = window.LTDistances;
const Route = window.LTRoute;
const Timeline = window.LTTimeline;
const Matching = window.LTMatching;
const Testimonials = window.LTTestimonials;
const Sponsors = window.LTSponsors;
const FAQ = window.LTFAQ;
return (
);
}
ReactDOM.createRoot(document.getElementById("root")).render();