'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 WebflowIntegrationPage() { const integration = getIntegration('webflow') if (!integration) return notFound() return (

Add Pulse to your Webflow site by pasting a single snippet into your project's custom code settings.


Project-Level Custom Code (Recommended)

  1. Open your Webflow project and go to Project Settings.
  2. Navigate to the Custom Code tab.
  3. In the Head Code section, paste the following snippet:
{``}
  1. Click Save Changes and publish your site.

Page-Level Custom Code

If you only want to track specific pages, you can add the script to individual page settings instead of the project-level settings. Go to the page's settings panel and paste the snippet in the Head Code section.

Important Notes

) }