feat: Optimize loading perf. by spliting big chunks and lazy loading them

This commit is contained in:
Ahmed Bouhuolia
2024-08-26 22:51:40 +02:00
parent 161d60393a
commit c9fe6d9b37
3 changed files with 53 additions and 38 deletions

View File

@@ -0,0 +1,10 @@
import { EnsureAuthNotAuthenticated } from "@/components/Guards/EnsureAuthNotAuthenticated";
import { Authentication } from "./Authentication";
export default function AuthenticationPage() {
return (
<EnsureAuthNotAuthenticated>
<Authentication />
</EnsureAuthNotAuthenticated>
);
}