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

11 lines
215 B
TypeScript
Raw Normal View History

2023-10-03 23:05:17 +00:00
import Dashboard from 'app/(main)/dashboard/Dashboard';
2023-09-29 12:29:22 +00:00
import { Metadata } from 'next';
2023-11-12 04:45:09 +00:00
export default function () {
2023-09-29 12:29:22 +00:00
return <Dashboard />;
}
export const metadata: Metadata = {
title: 'Dashboard | umami',
};