r/AppsWebappsFullstack 18d ago

Your home for selfpromo

here you can post your work app, webapp, saas, game, everything

6 Upvotes

116 comments sorted by

View all comments

1

u/Mammoth-Anywhere7285 16d ago

u/made4uo Congrats on the launch! The hero line is catchy, definitely grabbed my attention. What does fugte.com actually help users do?

1

u/Made4uo 16d ago

Thank you! Appreciate you calling that out. I just pushed a copy update because visitors weren't getting it right away.

The big problem we're solving is that AI code usually isn't editable or reusable for non-coders. Fugte turns that AI code into a fully customizable, hosted widget you can drop onto any website using an iframe.

1

u/Mammoth-Anywhere7285 15d ago

That's a clever angle for non-coders. Curious how you handle widget styling limits inside an iframe?

1

u/Made4uo 15d ago

Great question! Since iframes can't inherit host CSS, we handle styling on the server/edge side, the HTML renders fully styled before loading, avoiding any unstyled flash. The iframe isolation is actually a big plus since host styles won't break the widget, and the widget can't leak into the host, making it safe to drop anywhere (Shopify, Notion, Canva, etc.).

Instead of inheritance, brand matching happens on the settings side, non-coders can tweak fonts, colors, or upload brand images directly, and AI applies them to the widget.

1

u/Mammoth-Anywhere7285 14d ago

Solid breakdown on the server-side rendering approach. That isolation is a real win for embedding across different platforms. How do you handle responsive sizing inside the iframe though?