diff --git a/apps/backoffice/public/logos/logo.svg b/apps/backoffice/public/logos/logo.svg new file mode 100644 index 0000000..ca0f36e --- /dev/null +++ b/apps/backoffice/public/logos/logo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/backoffice/src/app/layout.tsx b/apps/backoffice/src/app/layout.tsx index 7428943..2d8a74d 100644 --- a/apps/backoffice/src/app/layout.tsx +++ b/apps/backoffice/src/app/layout.tsx @@ -1,11 +1,9 @@ import { FC, ReactElement } from 'react'; import { Outlet } from 'react-router-dom'; -import { Navbar } from '@imphnen-frontend-service/ui/organisms'; export const AppLayout: FC = (): ReactElement => { return (
-
); diff --git a/apps/backoffice/src/app/login/page.tsx b/apps/backoffice/src/app/login/page.tsx new file mode 100644 index 0000000..a78a20c --- /dev/null +++ b/apps/backoffice/src/app/login/page.tsx @@ -0,0 +1,30 @@ +import { FC, ReactElement } from 'react'; +import { + Input, + Button, + PasswordInput, +} from '@imphnen-frontend-service/ui/atoms'; + +export const Components: FC = (): ReactElement => { + return ( +
+
+ +

+ Welcome to IMPHNEN Backoffice +

+
+
Email
+ +
+
+
Password
+ +
+ +
+
+ ); +}; + +export default Components;