* feat: responsive * fix: success register * feat: auth login responsive && auth login implementation * fix: login page button disabled & register page * fix: conflict * fix: button disabled when loading * feat: register and otp integration * Update middleware.ts * feat: OTP Resend * fix: minor * stash * feat: mentor register pages * feat: mentor status page pending and success
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import { Navbar } from '@imphnen-frontend-service/ui/organisms';
|
|
import { FC, ReactElement } from 'react';
|
|
|
|
export const Components: FC = (): ReactElement => {
|
|
return (
|
|
<div className='bg-blue-50'>
|
|
<Navbar />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Components;
|