- Add dedicatedPage flag to integration registry (25 true, 50 false) - Delete hardcoded nextjs/react/vue/wordpress route pages (wrong metadata) - Hub page routes non-dedicated integrations to /integrations/script-tag - Add 301 redirects for 50 removed slugs → /integrations/script-tag - Migrate guide content from TSX to MDX (content/integrations/*.mdx) - Add gray-matter, next-mdx-remote, remark-gfm dependencies - Add content loader (lib/integration-content.ts) matching ciphera-website pattern - Add prebuild script for integration guide index generation - Sitemap reduced from 83 to 35 URLs with real lastmod dates - Remove seoDescription from registry (now in MDX frontmatter)
124 lines
4.0 KiB
TypeScript
124 lines
4.0 KiB
TypeScript
/**
|
|
* @file Dynamic route for individual integration guide pages.
|
|
*
|
|
* Renders MDX content from content/integrations/*.mdx via next-mdx-remote.
|
|
* Exports generateStaticParams for static generation and
|
|
* generateMetadata for per-page SEO (title, description, OG, JSON-LD).
|
|
*/
|
|
|
|
import type { Metadata } from 'next'
|
|
import { notFound } from 'next/navigation'
|
|
import { MDXRemote } from 'next-mdx-remote/rsc'
|
|
import remarkGfm from 'remark-gfm'
|
|
import { CodeBlock } from '@ciphera-net/ui'
|
|
import { integrations, getIntegration } from '@/lib/integrations'
|
|
import { getIntegrationGuide } from '@/lib/integration-content'
|
|
import { IntegrationGuide } from '@/components/IntegrationGuide'
|
|
|
|
// * ─── MDX Components ────────────────────────────────────────────
|
|
const mdxComponents = {
|
|
CodeBlock,
|
|
}
|
|
|
|
// * ─── Static Params ─────────────────────────────────────────────
|
|
export function generateStaticParams() {
|
|
return integrations
|
|
.filter((i) => i.dedicatedPage)
|
|
.map((i) => ({ slug: i.id }))
|
|
}
|
|
|
|
// * ─── SEO Metadata ──────────────────────────────────────────────
|
|
interface PageProps {
|
|
params: Promise<{ slug: string }>
|
|
}
|
|
|
|
export async function generateMetadata({ params }: PageProps): Promise<Metadata> {
|
|
const { slug } = await params
|
|
const guide = getIntegrationGuide(slug)
|
|
if (!guide) return {}
|
|
|
|
const title = `How to Add Pulse Analytics to ${guide.title} | Pulse by Ciphera`
|
|
const description = guide.description
|
|
const url = `https://pulse.ciphera.net/integrations/${guide.slug}`
|
|
|
|
return {
|
|
title,
|
|
description,
|
|
keywords: [
|
|
`${guide.title} analytics`,
|
|
`${guide.title} Pulse`,
|
|
'privacy-first analytics',
|
|
'website analytics',
|
|
'Ciphera Pulse',
|
|
guide.title,
|
|
],
|
|
alternates: { canonical: url },
|
|
openGraph: {
|
|
title,
|
|
description,
|
|
url,
|
|
siteName: 'Pulse by Ciphera',
|
|
type: 'article',
|
|
},
|
|
twitter: {
|
|
card: 'summary',
|
|
title,
|
|
description,
|
|
},
|
|
}
|
|
}
|
|
|
|
// * ─── Page Component ────────────────────────────────────────────
|
|
export default async function IntegrationPage({ params }: PageProps) {
|
|
const { slug } = await params
|
|
const integration = getIntegration(slug)
|
|
const guide = getIntegrationGuide(slug)
|
|
if (!integration || !guide) return notFound()
|
|
|
|
// * HowTo JSON-LD for rich search snippets
|
|
const jsonLd = {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'HowTo',
|
|
name: `How to Add Pulse Analytics to ${integration.name}`,
|
|
description: guide.description,
|
|
step: [
|
|
{
|
|
'@type': 'HowToStep',
|
|
name: `Open your ${integration.name} project`,
|
|
text: `Navigate to your ${integration.name} project and locate the file where you manage the HTML head or layout.`,
|
|
},
|
|
{
|
|
'@type': 'HowToStep',
|
|
name: 'Add the Pulse tracking script',
|
|
text: 'Insert the Pulse analytics script tag with your data-domain attribute into the head section of your page.',
|
|
},
|
|
{
|
|
'@type': 'HowToStep',
|
|
name: 'Deploy and verify',
|
|
text: 'Deploy your changes and visit your Pulse dashboard to verify that page views are being recorded.',
|
|
},
|
|
],
|
|
tool: {
|
|
'@type': 'HowToTool',
|
|
name: 'Pulse by Ciphera',
|
|
url: 'https://pulse.ciphera.net',
|
|
},
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
|
|
/>
|
|
<IntegrationGuide integration={integration}>
|
|
<MDXRemote
|
|
source={guide.content}
|
|
components={mdxComponents}
|
|
options={{ mdxOptions: { remarkPlugins: [remarkGfm] } }}
|
|
/>
|
|
</IntegrationGuide>
|
|
</>
|
|
)
|
|
}
|