Builders in our network embed this compact, self-contained widget on their website footers or documentation. It introduces your users to peer builder tools, while other makers reciprocal-recommend your product to their visitors.
Choose the integration snippet for your stack. If you use Next.js or React, copy the self-contained component. If you use plain HTML, Webflow, or WordPress, paste the two-line HTML container and script tag.
• Site Footer: Directly above or below your footer navigation row.
• Documentation: In your developer portal sidebar or footer.
• Dashboard: Under resources or partner ecosystem menu.
// 1. Install or copy the ExploreMoreWidget into your React / Next.js app
import { ExploreMoreWidget } from '@/components/ExploreMoreWidget';
export function SiteFooter() {
return (
<footer className="w-full border-t border-[var(--color-whisper)] py-12">
<div className="max-w-6xl mx-auto px-4 space-y-8">
{/* Continuous community discovery widget */}
<ExploreMoreWidget limit={3} />
<p className="text-xs text-[var(--color-ash)] text-center font-mono">
© Your App. Member of the Product.forum Discovery Network.
</p>
</div>
</footer>
);
}