Documentation Index
Fetch the complete documentation index at: https://docs.runable.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Every website deployed through Runable includes a “Made with Runable” badgea small floating pill fixed to the bottom-right corner of the page. It links back to runable.com. You can remove it with a one-line code change and a redeploy.
There is no settings toggle for badge removal. It requires editing your site’s source code.
Badge Details
| Property | Value |
|---|---|
| Position | Fixed, bottom-right (bottom: 20px, right: 20px) |
| Z-index | 10000 |
| Component | <RunableBadge /> from @runablehq/website-runtime |
| File | packages/website-runtime/src/ui/runable-badge.tsx |
Step 1: Remove the Component
Open your website’s root component (typicallyApp.tsx) and remove <RunableBadge />:
App.tsx
RunableBadge was the only thing you used from it:
App.tsx
Step 2: Redeploy
Redeploy your website for the change to take effect. The badge will no longer appear.Optional Cleanup
If you want to fully remove badge-related files from your codebase, you can delete these:Files safe to delete
Files safe to delete
packages/website-runtime/src/ui/runable-badge.tsx— Badge componentpackages/website-runtime/src/ui/icons/runable-icon.tsx— Badge icon SVGpackages/website-runtime/src/ui/background.png— Badge hover background
packages/website-runtime/src/index.ts:index.ts
Files you can leave alone
Files you can leave alone
packages/website-runtime/src/core/selection.ts— Containsdata-runable-badgeCSS rules. Harmless if left in place.
Remove from Shared Chat (Optional)
A separate “Made with Runable” banner appears on shared chat pages. To remove it, modifypackages/web/src/components/chat/shared-chat-action.tsx and remove or replace the <SharedChatAction /> component.
FAQ
Can I toggle the badge from my dashboard?
Can I toggle the badge from my dashboard?
No. There is currently no subscription-based toggle, database field, or API endpoint to control badge visibility. It must be removed in code.
Will removing the badge affect my site?
Will removing the badge affect my site?
No. The badge is purely cosmetic attribution. Removing it has no impact on functionality, analytics, or your Runable plan.
What does the badge look like?
What does the badge look like?
A dark rounded pill with a white Runable icon and “Made with Runable” text. It has a subtle backdrop blur and lifts slightly with a cyan glow on hover.
