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

Add Pulse to your Squarespace site using the built-in Code Injection feature — no plugins needed.


Code Injection (Recommended)

  1. In your Squarespace dashboard, go to Settings > Developer Tools > Code Injection.
  2. In the Header field, paste the following snippet:
{``}
  1. Click Save.

Important Notes

) }