feat: Add component strucutre for calls and super basic livekit implementation
This commit is contained in:
parent
cdb0fdbf76
commit
b7266da61f
20 changed files with 284 additions and 45 deletions
|
|
@ -12,6 +12,8 @@ import { useIsMobile } from "@tensamin/ui/utils";
|
|||
import { MobileNavbar } from "./navbar";
|
||||
import { useLocation } from "@tanstack/react-router";
|
||||
|
||||
import SidebarBox from "@tensamin/call/sidebarBox";
|
||||
|
||||
/**
|
||||
* Renders the conversation sidebar with account summary and conversation list.
|
||||
* @returns Sidebar JSX.
|
||||
|
|
@ -45,6 +47,11 @@ export default function Sidebar() {
|
|||
<MobileNavbar />
|
||||
</SidebarFooter>
|
||||
)}
|
||||
{!isMobile && (
|
||||
<SidebarFooter>
|
||||
<SidebarBox />
|
||||
</SidebarFooter>
|
||||
)}
|
||||
</SidebarRoot>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue