feat: enhance page titles and link previews for improved user experience and sharing capabilities
This commit is contained in:
19
app/integrations/layout.tsx
Normal file
19
app/integrations/layout.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Integrations | Pulse',
|
||||
description: 'Add Pulse analytics to Next.js, React, Vue, WordPress, and more in under a minute.',
|
||||
openGraph: {
|
||||
title: 'Integrations | Pulse',
|
||||
description: 'Add Pulse analytics to Next.js, React, Vue, WordPress, and more in under a minute.',
|
||||
siteName: 'Pulse by Ciphera',
|
||||
},
|
||||
}
|
||||
|
||||
export default function IntegrationsLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return children
|
||||
}
|
||||
Reference in New Issue
Block a user