/* ============================================================ TRYONME Landing — Hero section ============================================================ */ function Hero() { const [mouse, setMouse] = useState({ x: 0.5, y: 0.5 }); const heroRef = useRef(null); const onMove = (e) => { if (!heroRef.current) return; const r = heroRef.current.getBoundingClientRect(); setMouse({ x: (e.clientX - r.left) / r.width, y: (e.clientY - r.top) / r.height }); }; return (
BETA · 2026
VIRTUAL TRY-ON SCREENSHOT → OUTFIT

See any outfit on you before you swipe. Screenshot a fit from the feed, triple-tap your phone, and TryOnMe drops it onto your photo in seconds.

DOWNLOAD FOR iOS ADD TO CHROME
5
FREE TRIES
ON SIGN UP
3s
PER
TRY-ON
FITS FROM
ANY SITE
no green-screen,
no studio. just you.
★ AS SEEN ON FYP
); } function PhoneFrame({ mouse }) { const tilt = `rotate(${(mouse.x - 0.5) * 4}deg)`; return (
9:41 ● ● ●
FROM SCREENSHOT
VINTAGE TEE
); } window.Hero = Hero; window.PhoneFrame = PhoneFrame;