// ENFINI BOTE - Cosmic Interface | Catalyst x ENFINI import { useEffect, useState } from "react"; import { motion, AnimatePresence } from "framer-motion"; export default function EnfiniBoteSite() { const [entered, setEntered] = useState(false); useEffect(() => { const timer = setTimeout(() => setEntered(true), 3000); return () => clearTimeout(timer); }, []); return (
{!entered ? : }
); } function LoadingScreen() { return (

REENTRY INITIATED

A signal from beyond. ENFINI BOTE has returned.

); } function MainExperience() { return (
); } function Navbar() { return ( ); } function HeroSection() { return (

CATALYST x ENFINI BOTE

The infinite returns through garment, ritual, and signal. This is not fashion. This is reentry.

); } function ScrollsSection() { return (

THE SCROLLS

Cosmic scriptures decoded through silhouette, myth and purpose. Each scroll unlocks a truth.

{['THE REENTRY', 'THE DIVINE WARDROBE', 'THE ENTITY INDEX'].map((title, i) => (

{title}

Encrypted lore. Celestial knowledge. Worn by the awakened.

))}
); } function CapsuleSection() { return (

CAPSULE I: SIGNAL FORMS

One look per Entity. Tailored for the Vessel. Fabric as transmission.

); } function RitualSection() { return (

VESSEL SELECTION RITUAL

A multi-step initiation to reveal your cosmic alignment. Required to access limited drops.

); } function ArchiveSection() { return (

THE ARCHIVE

A vault of lost visuals, sacred glyphs, and legacy fragments.

{[1, 2, 3, 4].map((i) => (
); } function Footer() { return ( ); }