mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-03 21:15:35 +05:00
12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import { LoginPage } from "#/pages/Login";
|
|
|
|
export const metadata = {
|
|
title: "Авторизация",
|
|
description: "Вход в аккаунт anixart",
|
|
}
|
|
|
|
export const dynamic = "force-static";
|
|
|
|
export default function Login() {
|
|
return <LoginPage />;
|
|
}
|