import ComponentsAuthRegisterForm from '@/components/auth/components-auth-register-form'; import Link from 'next/link'; import React from 'react'; type Props = {} const RegisterPage = (props: Props) => { return (
{/* Background gradient layer */}
background gradient
{/* Background decorative objects */} left decor right decor {/* Centered card wrapper */}
{/* Inner card (glassmorphic effect) */}
{/* Header */}

Sign Up

Enter your email and password to register

{/* Login form */} {/* Footer link */}
Already have an account ?{" "} SIGN IN
); } export default RegisterPage