mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 08:37:13 +01:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import Dashboard from 'app/(app)/dashboard/Dashboard';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function DashboardPage() {
|
|
return <Dashboard />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Dashboard | umami',
|
|
};
|