From 62cb7dd64efad897043dae41b86f6fef257fb363 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:05:01 +0000 Subject: [PATCH] Add src/app/login/page.tsx --- src/app/login/page.tsx | 115 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 src/app/login/page.tsx 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
  • +
+
+
+
+ +
+ +
+
+ ); +}