feat: enhance page titles and link previews for improved user experience and sharing capabilities
This commit is contained in:
15
app/notifications/layout.tsx
Normal file
15
app/notifications/layout.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Notifications | Pulse',
|
||||
description: 'View your alerts and activity updates.',
|
||||
robots: { index: false, follow: false },
|
||||
}
|
||||
|
||||
export default function NotificationsLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return children
|
||||
}
|
||||
Reference in New Issue
Block a user