diff --git a/src/app/(auth)/login/page.tsx b/src/app/(auth)/login/page.tsx new file mode 100644 index 0000000..583d54a --- /dev/null +++ b/src/app/(auth)/login/page.tsx @@ -0,0 +1,76 @@ +"use client"; + +import { Button } from "@/components/ui/button"; +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { useRouter } from "next/navigation"; + +export default function Login() { + const router = useRouter(); + + return ( +
+ + + Login + + Enter your email and password below to login + + + + {/*
+ + +
*/} + {/*
+
+ +
+
+ + Or continue with + +
+
*/} +
+ + +
+
+ + +
+
+ + + +
+
+ ); +}