diff --git a/src/app/auth/login/page.tsx b/src/app/auth/login/page.tsx new file mode 100644 index 0000000..86abb28 --- /dev/null +++ b/src/app/auth/login/page.tsx @@ -0,0 +1,135 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import Link from 'next/link'; + +export default function LoginPage() { + return ( + + + + +
+
+
+

+ Sign in to your account +

+

+ Or{' '} + + register for a new account + +

+
+
+
+
+ + +
+
+ + +
+
+ +
+
+ + +
+ +
+ + Forgot your password? + +
+
+ +
+ +
+ +
+
+
+
+
+ + Or continue with + +
+
+ +
+ +
+ +
+
+ + + ); +}