Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
12 lines
287 B
TypeScript
12 lines
287 B
TypeScript
import type { Metadata } from 'next'
|
|
|
|
import AdminEventDetail from '@/features/events/detail/AdminEventDetail'
|
|
|
|
export const metadata: Metadata = {
|
|
robots: { index: false, follow: false },
|
|
}
|
|
|
|
const AdminEventDetailPage = () => <AdminEventDetail />
|
|
|
|
export default AdminEventDetailPage
|