umami/src/app/(main)/dashboard/page.tsx

11 lines
200 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
import DashboardPage from './DashboardPage';
2023-09-29 12:29:22 +00:00
import { Metadata } from 'next';
2023-11-12 04:45:09 +00:00
export default function () {
2024-02-06 07:59:33 +00:00
return <DashboardPage />;
2023-09-29 12:29:22 +00:00
}
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Dashboard',
2023-09-29 12:29:22 +00:00
};