mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +01:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { Metadata } from 'next';
|
|
import LoginPage from './LoginPage';
|
|
|
|
export default async function () {
|
|
return <LoginPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Login',
|
|
};
|