'use client' import { IntegrationGuide } from '@/components/IntegrationGuide' import { CodeBlock } from '@/components/CodeBlock' import { getIntegration } from '@/lib/integrations' import { notFound } from 'next/navigation' export default function RemixIntegrationPage() { const integration = getIntegration('remix') if (!integration) return notFound() return (

Add Pulse to your Remix application by placing the script tag in your root route's <head>.


Root Route (Recommended)

In Remix, the app/root.tsx file controls the HTML shell. Add the Pulse script inside the <head> section.

{`import { Links, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react" export default function App() { return ( {/* Pulse Analytics */}