๐Ÿ“ฆ EqualifyEverything / equalify-dashboard

๐Ÿ“„ login.tsx ยท 35 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { toast } from '~/components/alerts';
import { LoginForm } from '~/components/forms';
import { AuthLayout, SEO } from '~/components/layout';
import Public from '../public';

const Login = () => {

  return (
    <Public>
      <AuthLayout>
        <SEO
          title="Login - Equalify"
          description="Log in to your Equalify account to manage your properties and reports."
          url="https://dashboard.equalify.app/login"
        />
        <section className="flex h-full w-full flex-col items-center justify-center gap-10">
          <div className="w-full max-w-md space-y-2">
            <h1 className="text-3xl md:text-[2.5rem]">Login</h1>
            <h2 className="text-base text-[#4D4D4D]">
              Welcome back to Equalify! Please sign in:{' '}
              <span role="img" aria-hidden="true">
                ๐Ÿ‘‹
              </span>
            </h2>
          </div>
          <LoginForm />
        </section>
      </AuthLayout>
    </Public>
  );
};

export default Login;