mirror of
https://github.com/docmost/docmost.git
synced 2025-11-19 11:41:08 +10:00
updates and fixes
* seo friendly urls * custom client serve-static module * database fixes * fix recent pages * other fixes
This commit is contained in:
@ -1,5 +1,13 @@
|
||||
import { LoginForm } from '@/features/auth/components/login-form';
|
||||
import { LoginForm } from "@/features/auth/components/login-form";
|
||||
import { Helmet } from "react-helmet-async";
|
||||
|
||||
export default function LoginPage() {
|
||||
return <LoginForm />;
|
||||
return (
|
||||
<>
|
||||
<Helmet>
|
||||
<title>Login</title>
|
||||
</Helmet>
|
||||
<LoginForm />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user