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

Add Pulse to your Wix site using the Custom Code feature in your site settings.


Custom Code (Recommended)

  1. In your Wix dashboard, go to Settings > Custom Code (under “Advanced”).
  2. Click + Add Custom Code.
  3. Paste the following snippet:
{``}
  1. Set the code to load in the Head of All pages.
  2. Click Apply.

Important Notes

) }