import ComponentsAuthLoginForm from '@/components/auth/components-auth-login-form'; import { Metadata } from 'next'; import Link from 'next/link'; import React from 'react'; export const metadata: Metadata = { title: 'Login', }; const CoverLogin = () => { return (
{/* Background */}
background
{/* Decorative images */} image image image image {/* Main container */}
{/* LEFT SIDE */}
{/* Centered Image */}
Login Illustration
{/* RIGHT SIDE */}
{/* Login Form Section */}

Sign In

Enter your email and password to login

{/* Login form */}
{/* Footer */}

© {new Date().getFullYear()}. VG Products All Rights Reserved.

); }; export default CoverLogin;