/* ============================================================ TRYONME Landing — Marquee, TripleTap, HowItWorks ============================================================ */ function Marquee() { const items = [ "★ TRYONME ★", "SCREENSHOT", "★ TRYONME ★", "TRIPLE-TAP", "★ TRYONME ★", "WEAR IT", "★ TRYONME ★", "AI FITTING", "★ TRYONME ★", "OUTFIT-CHECK" ]; return (
{[...items, ...items, ...items].map((t, i) => ( {t} ))}
); } function TripleTap() { const [pulse, setPulse] = useState(0); useEffect(() => { const t = setInterval(() => setPulse(p => p + 1), 1800); return () => clearInterval(t); }, []); return (
{[0, 1, 2].map(i => { const r = 30 + i * 30 + (pulse % 3 === i ? 6 : 0); return ( ); })} tap here
SHORTCUT


Set up Back Tap once in iOS Accessibility — then tap the back of your phone three times, on any screen, in any app, to import the latest screenshot and start trying it on.

SETTINGS → ACCESSIBILITY → TOUCH → BACK TAP → TRIPLE TAP → TRYONME
); } function HowItWorks() { const steps = [ { n: "01", kicker: "FIND", title: "SPOT THE FIT", body: "Scrolling Insta, TikTok, ASOS, Depop — anywhere. See an outfit you'd actually wear.", art: "screenshot", }, { n: "02", kicker: "GRAB", title: "TRIPLE-TAP", body: "Three taps on the back of your phone. We grab the screenshot, lift the garment, no copy-paste.", art: "tap", }, { n: "03", kicker: "WEAR", title: "TRY IT ON YOU", body: "AI drops the look on your photo in 3 seconds. Save it, share it, decide before you swipe.", art: "result", }, ]; return (
§ HOW IT WORKS
3 STEPS

From screenshot to outfit-on-you in three taps.

{steps.map((s, i) => (
{s.n}
{s.kicker}
{s.title}

{s.body}

))}
); } function StepArt({ kind }) { if (kind === "screenshot") { return ( ); } if (kind === "tap") { return ( ×3 ); } return ( {Array.from({ length: 12 }).map((_, i) => ( ))} 3 sec ✦ ); } window.Marquee = Marquee; window.TripleTap = TripleTap; window.HowItWorks = HowItWorks; window.StepArt = StepArt;