Sesame Labs Docs
  • πŸ‘‹Welcome to Sesame Labs
  • Getting Started
    • ✨Set up your Community Hub
      • ⚑Create your first quest
      • πŸ€–Configure Community Hub Discord Bot
      • πŸ€‘Set up your Rewards Store
      • 🌟Deploy Sesame Widget
    • πŸ“½οΈGetting started videos
    • πŸ₯³Best practices to get started
    • ⁉️FAQ
  • Use Cases
    • Use Cases
      • πŸ™ŒBoost community activity
      • πŸ—ΊοΈLearning journeys
      • 🏒Vertical-specific use cases
  • Product Guides
    • ☸️Community Hub
      • ⚑Quests
        • Mini-quests
        • Event-based quest
        • Referral quests
        • Groups
        • Actions
        • Quizzes
      • πŸ…Rewards
      • πŸ€‘Rewards store
      • πŸ†Leaderboard
      • 🌟Sesame Labs Widget
        • ⏫Install and configure Widget
      • πŸ€–Discord bot
    • 🧠AI CoPilot
    • πŸ™ŠAdmin & Moderation
      • πŸ’»Roles
      • πŸ‘Participants
      • πŸ”ŽContent moderation
      • ⚠️Fraud detection
      • πŸ“ˆAnalytics
    • 🎨White-label Options
      • 🌎Custom domain
      • πŸ–ΌοΈiframe
      • πŸ› οΈAdvanced branding tools
      • πŸ†”Single Sign On (SSO) Setup
    • πŸ”—Integrations
      • πŸ‘•Printful
        • Setup
        • Working with Printful items
      • πŸ€–Discord bot
      • πŸ“ΆAPI
        • ☸️Community Hub API
        • ⏫Widget API
  • About
    • Sesame Labs brand assets
    • Contact us
Powered by GitBook
On this page
  1. Product Guides
  2. White-label Options

Custom domain

You can easily create a new page on your own domain i.e. yourdomain.com/quests and mirror Sesame Lab's hosted landing page on that page using an iframe.

PreviousWhite-label OptionsNextiframe

Last updated 1 year ago

Let’s say that your Community homepage is . If you'd like to serve it from your own domain, i.e. yourdomain.xyz/quests add an HTML page on your domain that looks something like this.

<!doctype html>
<html lang="en">
    <head>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0;" />
        <link rel="icon" type="image/png" href="/exploding-head.png">
        <title>Sesame Labs Quests</title>
        <style>
* {margin: 0; padding: 0; border: none}
html, body {overflow: hidden}
html, body, iframe {height: 100%; width: 100%}
        </style>
    </head>
    <body>
        <iframe id="sesame-app" src="https://sesamelabs.xyz/sesame/?tab=home" frameborder="0"></iframe>
    </body>
</html>

Note: Set the title of the page attribute, add your own favicon (link href), and update the iframe src attribute to the Sesame Labs's community homepage url.

🎨
🌎
https://sesamelabs.xyz/sesame/?tab=home