Live demo

The widget you see in the bottom-right is real

That's your actual widget.js running live on this page — the same script your users will embed on their sites.

Back to roadmap

What your users see

S
ShipGrid
Live
12Features
3In Progress
2.1kVotes
Pinned
Feature Vote

Which feature should we ship next?

AI-powered changelog47%

184 votes

Recent UpdatesView all →
Widget pinned polls2h ago
Vote persistence fixed1d ago
CLI init command3d ago
Powered by ShipGridFull roadmap →

Add to any HTML site

index.html
<script
  src="https://beta.shipgrid.io/widget.js"
  data-project="shipgrid"
  data-theme="dark"
  defer
></script>

Works in <head> or before </body> — the script waits for the DOM automatically.

Using Next.js?

layout.tsx
import Script from "next/script"

<Script
  src="https://beta.shipgrid.io/widget.js"
  data-project="shipgrid"
  data-theme="dark"
  strategy="lazyOnload"
/>

Use strategy="lazyOnload" to avoid hydration warnings. Add to your root layout.tsx to show on every page.