feat: enhance page titles and link previews for improved user experience and sharing capabilities

This commit is contained in:
Usman Baig
2026-02-22 19:40:00 +01:00
parent 94fb7c60e0
commit 5c148a0547
17 changed files with 267 additions and 0 deletions

19
app/features/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Features | Pulse',
description: 'Dashboards, funnels, uptime monitoring, realtime visitors, and more — all without cookies.',
openGraph: {
title: 'Features | Pulse',
description: 'Dashboards, funnels, uptime monitoring, realtime visitors, and more — all without cookies.',
siteName: 'Pulse by Ciphera',
},
}
export default function FeaturesLayout({
children,
}: {
children: React.ReactNode
}) {
return children
}