Raw HTML
Add the LinkToast widget to any HTML page with a script tag.

Load the widget loader with next/script or a client effect. The tag mounts once and Studio updates flow through without redeploying your app for content changes.
Publish in Studio and copy the embed code. Note the widget ID in data-widget-id.
Choose a page or layout component, such as a marketing footer or partners section. The script can live in the component tree or in the root layout.
Use next/script with afterInteractive so the loader runs after hydration. Replace YOUR_WIDGET_ID with the ID from Studio.
import Script from 'next/script';
export function LinkToastWidget() {
return (
<Script
src="https://app.linktoast.com/widget-loader.js"
data-widget-id="YOUR_WIDGET_ID"
strategy="afterInteractive"
/>
);
}Import LinkToast widget into the page and place it where the Trusted By block should appear. Deploy once. Later Studio publishes do not require a new deploy for widget content.
Sign up, publish a widget, and paste the embed code on your site.