Reedge Partner Badge

Show that your moving company and your moves are powered by Reedge with a simple, lightweight badge.
The embed is designed to be fast to implement, visually consistent, and automatically adapt to the user’s preferences (like dark mode).

Quick start

Add this script to your website:

<script
  src="https://reedgeapp.com/partner-badge/embed.js"
  data-theme="auto"
  data-width="220"
></script>

That’s it. The badge will render automatically.

Options

You can customize the behavior using data-* attributes on the script.


data-theme

Controls the visual style of the badge.

ValueDescription
lightAlways use light mode
darkAlways use dark mode
autoFollows the user’s system preference

Default: light


data-width

Sets the width of the badge in pixels.

data-width="220"

Default: 220

Examples


Light mode (Default)

<script
  src="https://reedgeapp.com/partner-badge/embed.js"
  data-theme="light"
></script>

Dark mode

<script
  src="https://reedgeapp.com/partner-badge/embed.js"
  data-theme="dark"
></script>

Auto (recommended)

Follows the user’s system/browser preference (light or dark mode automatically).

<script
  src="https://reedgeapp.com/partner-badge/embed.js"
  data-theme="auto"
></script>