Updated chat ui/ux
This commit is contained in:
parent
c47ea7e430
commit
04f37be8f6
7 changed files with 146 additions and 32 deletions
|
|
@ -6,6 +6,7 @@ import Crypto from "@tensamin/crypto/context";
|
|||
import LegalWrapper from "@/features/legal/screen";
|
||||
|
||||
import { Toaster } from "@tensamin/ui/cmp/sonner";
|
||||
import { TooltipProvider } from "@tensamin/ui/cmp/tooltip";
|
||||
|
||||
/**
|
||||
* Executes Layout.
|
||||
|
|
@ -42,11 +43,13 @@ export default function Layout(props: { children: ReactNode }) {
|
|||
)}
|
||||
</div>
|
||||
<Toaster />
|
||||
<Storage>
|
||||
<LegalWrapper>
|
||||
<Crypto>{props.children}</Crypto>
|
||||
</LegalWrapper>
|
||||
</Storage>
|
||||
<TooltipProvider>
|
||||
<Storage>
|
||||
<LegalWrapper>
|
||||
<Crypto>{props.children}</Crypto>
|
||||
</LegalWrapper>
|
||||
</Storage>
|
||||
</TooltipProvider>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue