aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/admin/websites/page.tsx
blob: d6da9f6375663cbe1f1a22a485f0de410887c4af (plain) (blame)
1
2
3
4
5
6
7
8
9
import type { Metadata } from 'next';
import { AdminWebsitesPage } from './AdminWebsitesPage';

export default function () {
  return <AdminWebsitesPage />;
}
export const metadata: Metadata = {
  title: 'Websites',
};