feat: register and otp integration

This commit is contained in:
boboiazumi
2025-05-26 20:14:26 +07:00
parent 363f1582c9
commit 935d23887c
14 changed files with 273 additions and 90 deletions
@@ -0,0 +1,12 @@
import { FC, ReactElement } from 'react';
import { Outlet } from 'react-router-dom';
export const AppLayout: FC = (): ReactElement => {
return (
<main className="bg-primary-50 min-h-screen">
<Outlet />
</main>
);
};
export default AppLayout;