admin/app/(dashboard)/manage-events/new/layout.tsx
alisaza 1612e3575d feat(events): add admin UI to create events for verified hosts
Wire manage-events/new with host picker and create flow against the new
admin create API, including entry points from the events list and user detail.
2026-09-09 11:22:00 +03:30

13 lines
316 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.manageEventNew,
}
export default function Layout({ children }: { children: ReactNode }) {
return children
}