From eff44c42a147d6bd00ac305e01cbdeefaffb9a80 Mon Sep 17 00:00:00 2001 From: boboiazumi Date: Thu, 10 Jul 2025 10:07:26 +0700 Subject: [PATCH] stash --- apps/dimentorin/src/app/page.tsx | 7 ++++++- apps/dimentorin/src/main.tsx | 7 +++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/apps/dimentorin/src/app/page.tsx b/apps/dimentorin/src/app/page.tsx index f135208..77801dc 100644 --- a/apps/dimentorin/src/app/page.tsx +++ b/apps/dimentorin/src/app/page.tsx @@ -1,7 +1,12 @@ +import { Navbar } from '@imphnen-frontend-service/ui/organisms'; import { FC, ReactElement } from 'react'; export const Components: FC = (): ReactElement => { - return <>Hallo; + return ( +
+ +
+ ); }; export default Components; diff --git a/apps/dimentorin/src/main.tsx b/apps/dimentorin/src/main.tsx index 4f9c907..ea6d2ba 100644 --- a/apps/dimentorin/src/main.tsx +++ b/apps/dimentorin/src/main.tsx @@ -6,6 +6,7 @@ import { add404PageToRoutesChildren, addErrorElementToRoutes, convertPagesToRoute, + ModalLoginProvider, QueryProvider, } from '@imphnen-frontend-service/utils'; import { Toaster } from 'sonner'; @@ -35,8 +36,10 @@ if (!rootElement) throw new Error('Failed to find the root element'); createRoot(rootElement).render( - - + + + + );