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

Add Pulse to your Ghost publication using the built-in Code Injection feature.


Code Injection (Recommended)

  1. Log in to your Ghost admin panel.
  2. Go to Settings > Code injection.
  3. In the Site Header field, paste the following snippet:
{``}
  1. Click Save.

Theme-Level Integration (Alternative)

If you prefer, you can also add the script directly to your Ghost theme's default.hbs file, just before the closing </head> tag. This approach requires re-uploading the theme whenever you make changes.

Important Notes

) }