1import type { Metadata } from 'next';2import { OverviewModule } from '@/components/admin/modules';34export const metadata: Metadata = { title: 'Admin', robots: { index: false, follow: false } };56export default function AdminPage() {7 return <OverviewModule />;8}9