"use client" import React, { Suspense, lazy } from "react"; // Use lazy loading for the form component const LoginForm = lazy(() => import('./components/LoginForm')); // Background Component const AuthBackground = () => (
); // Loading State function LoginLoading() { return (

Loading secure login...

); } // Main page component export default function LoginPage() { return (
}>
); }