- Introduced layout components for multiple admin dashboard sections including events, audit logs, bank accounts, blog articles, bookings, chat oversight, cities, contact messages, dashboard, discount codes, event categories, guest lists, identity verifications, manage events, manual notifications, notification rules, payments, provinces, push deliveries, reviews, settlements, sms messages, support tickets, user reports, and users. - Updated metadata for the auth layout to include the admin page title. - Modified branch protection documentation to clarify deployment notifications.
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import type { Metadata } from 'next'
|
|
import type { ReactNode } from 'react'
|
|
|
|
import { ADMIN_PAGE_TITLES } from '@/constants/adminPageTitles'
|
|
|
|
export const metadata: Metadata = {
|
|
title: ADMIN_PAGE_TITLES.chatOversightDetail,
|
|
}
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return children
|
|
}
|