Source: register/page.js

// pages/login.js
import React from 'react';
import RegisterPage from '../componenets/auth/RegisterPage';
/**
 * Register Page
 * 
 * This page component renders the RegisterPage component, which handles user registration.
 * The RegisterPage component contains the UI and logic for user registration functionality.
 * 
 * @module Register
* @returns {JSX.Element} The JSX element representing the Register page.

 */

const Register = () => {
    return <RegisterPage /> ;
};

export default Register;