Web Portal
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.

ModeExample
Path routehttps://app.gleam.land/p/{projectPathId}/feedback
Subdomain routehttps://{portalSubdomain}.gleam.land/feedback
Announcement detailhttps://{portal}/announcement/{announcementId}
Post detailhttps://{portal}/post/{postId}

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>