Wrap Login with SEO fragment and close properly

cgen-907a53ee10494b05b5731d101b6a69f5
This commit is contained in:
Builder.io 2025-10-19 21:22:13 +00:00
parent 9a9830cc87
commit eba8231dca

View file

@ -246,6 +246,8 @@ export default function Login() {
}
return (
<>
<SEO pageTitle="Login" description="Sign in to your AeThex account to access the dashboard and community." canonical={typeof window !== 'undefined' ? window.location.href : undefined as any} />
<Layout>
<div className="min-h-screen bg-aethex-gradient py-12 flex items-center justify-center">
<div className="container mx-auto px-4 max-w-md">
@ -547,5 +549,6 @@ export default function Login() {
</DialogContent>
</Dialog>
</Layout>
</>
);
}