diff --git a/web/src/App.tsx b/web/src/App.tsx index e95ac6a..d494bfd 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -12,6 +12,10 @@ const router = createBrowserRouter([ path: "/", element: , }, + { + path: "/agreement", + element: , + }, { path: "/login", element: , diff --git a/web/src/pages/Agreement/index.tsx b/web/src/pages/Agreement/index.tsx new file mode 100644 index 0000000..3dfe5a2 --- /dev/null +++ b/web/src/pages/Agreement/index.tsx @@ -0,0 +1,45 @@ +import { type FC } from "react"; + +import overlay from "@/assets/overlay.jpg"; +import { Card, CardContent } from "@/components/ui/card"; +import AccountList from "@/feature/AccountList"; + +const AgreementPage: FC = () => { + return ( +
+
+ +
+
+ icon + +
+

+ Select Account +

+

+ Choose one of the accounts below in order to proceed to home + lab services and tools. +

+
+
+ + {/* */} + + + +
+
+
+
+ ); +}; + +export default AgreementPage;