Web
Web Portal
Add the hosted Gleam Portal to a web product with a direct link, iframe embed, or sidebar launcher.
Portal URL Shape
Every project has a hosted Portal. Projects can use a path route on the main app domain or a configured subdomain route.
| Mode | Example |
|---|---|
| Path route | https://app.gleam.land/p/{projectPathId}/feedback |
| Subdomain route | https://{portalSubdomain}.gleam.land/feedback |
| Announcement detail | https://{portal}/announcement/{announcementId} |
| Post detail | https://{portal}/post/{postId} |
Recommended Direct Link
Start with a normal link. It is reliable, fast to test, and works across browsers without iframe policy surprises.
Feedback link
<a
href="https://app.gleam.land/p/YOUR_PROJECT_SLUG/feedback"
target="_blank"
rel="noopener noreferrer"
>
Send feedback
</a>Iframe Embed
Use an iframe when the Portal should sit inside an existing product page. Keep the frame tall enough for feedback lists and detail pages.
Inline iframe
<iframe
src="https://app.gleam.land/p/YOUR_PROJECT_SLUG/feedback"
title="Gleam feedback portal"
loading="lazy"
referrerpolicy="strict-origin-when-cross-origin"
style="width:100%;min-height:640px;border:0;border-radius:12px"
></iframe>