/* ============================================================ TRYONME Landing — Social proof, FAQ, BigCTA, Footer ============================================================ */ function Social() { const reviews = [ { handle: "@maya.bee", body: "i no longer order 3 sizes \"to compare\". insane time-save.", stars: 5, color: "var(--pink)" }, { handle: "@kerimk", body: "Triple-tap on a vintage flickr photo from 2009 just to see — 10/10.", stars: 5, color: "var(--yellow)" }, { handle: "@nora.x", body: "Returned 0 things this month. Genuinely thought I'd hate the AI but it nailed the drape.", stars: 5, color: "var(--blue)" }, { handle: "@dee.mp4", body: "the chrome thing for depop is unfair. my wardrobe is doomed.", stars: 5, color: "var(--pink)" }, { handle: "@sasha.97", body: "ngl, I just keep trying on outfits I'll never buy. it's content now.", stars: 5, color: "var(--yellow)" }, { handle: "@theowears", body: "no studio, no lighting, no friend with a camera. just me & a screenshot.", stars: 5, color: "var(--blue)" }, ]; return (
§ WORD ON THE FEED
↓ 14K REVIEWS


THEY WORE IT.

{reviews.map((r, i) => (
{r.handle}
{"★".repeat(r.stars)}
"{r.body}"
))}
); } function FAQ() { const items = [ { q: "Is the AI any good?", a: "It's good at common shapes — tees, hoodies, dresses, jackets, denim. Heavy patterns, sequins and complex layering still throw it. We tell you which model is running and you can flag bad results." }, { q: "Where do my photos go?", a: "On your phone. Try-ons run on-device for the screenshot crop, and the actual fit-on-you generation is a one-shot send to the AI — no training, no archive." }, { q: "How much does it cost?", a: "5 free credits on sign-up. After that, credit packs from $1.99. The Chrome extension is free — it just hands fits over to the iOS app." }, { q: "Do I need to be on iOS?", a: "Right now, yes. The full try-on lives in the iOS app. The Chrome extension lets desktop folks send fits to their phone." }, { q: "Can I use a friend's photo?", a: "Please get their consent first. We don't moderate face uploads, but the App Store does — and revenge fits is gross." }, { q: "Will my screenshot end up on TikTok?", a: "Only if you put it there. We never share or post anything; the share sheet is the only way out." }, ]; const [open, setOpen] = useState(0); return (
§ STILL ASKING
FAQ

THINGS PEOPLE
actually ask.

{items.map((it, i) => (

{it.a}

))}
); } function BigCTA() { return (
SCREENSHOT, TRIPLE-TAP, DONE

STOP GUESSING.
START WEARING.

Free download. 5 fits on the house. The next return-free month is one tap away.

DOWNLOAD FOR iOS ADD CHROME EXT
); } function Footer() { return ( ); } window.Social = Social; window.FAQ = FAQ; window.BigCTA = BigCTA; window.Footer = Footer;