diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx new file mode 100644 index 0000000..360a2be --- /dev/null +++ b/src/app/login/page.tsx @@ -0,0 +1,115 @@ +"use client"; + +import { useEffect, useState } from "react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function LoginPage() { + const [isClient, setIsClient] = useState(false); + + useEffect(() => { + setIsClient(true); + }, []); + + if (!isClient) { + return null; + } + + return ( + + + +
+
+

Welcome Back

+

Sign in to your ParkSpot account

+ +
+
+ + +
+ +
+ + +
+ +
+ + Forgot password? +
+ + + +
+ Don't have an account? Sign up here +
+
+ +
+

Login & Registration Features:

+
    +
  • • Secure authentication system
  • +
  • • Email verification
  • +
  • • Password reset functionality
  • +
  • • Two-factor authentication
  • +
  • • Session management
  • +
  • • Profile synchronization
  • +
+
+
+
+ +
+ +
+
+ ); +}