umami/src/app/login/page.tsx

11 lines
190 B
TypeScript
Raw Normal View History

2023-09-29 14:29:22 +02:00
import { Metadata } from 'next';
2024-02-06 17:13:19 +01:00
import LoginPage from './LoginPage';
2023-09-29 14:29:22 +02:00
2024-02-06 17:13:19 +01:00
export default async function () {
2024-02-06 08:59:33 +01:00
return <LoginPage />;
2023-09-29 14:29:22 +02:00
}
export const metadata: Metadata = {
2024-02-18 00:12:14 +01:00
title: 'Login',
2023-09-29 14:29:22 +02:00
};