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).
Reedge Partner Badge
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.
| Value | Description |
|---|---|
light | Always use light mode |
dark | Always use dark mode |
auto | Follows 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>