aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/admin/websites/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/(main)/admin/websites/page.tsx')
-rw-r--r--src/app/(main)/admin/websites/page.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/app/(main)/admin/websites/page.tsx b/src/app/(main)/admin/websites/page.tsx
new file mode 100644
index 0000000..d6da9f6
--- /dev/null
+++ b/src/app/(main)/admin/websites/page.tsx
@@ -0,0 +1,9 @@
+import type { Metadata } from 'next';
+import { AdminWebsitesPage } from './AdminWebsitesPage';
+
+export default function () {
+ return <AdminWebsitesPage />;
+}
+export const metadata: Metadata = {
+ title: 'Websites',
+};