refactor: move app directories

This commit is contained in:
2025-09-24 11:40:45 +02:00
parent 69847b09f6
commit 97a5506e15
55 changed files with 89 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
import * as React from "react";
import { Sidebar, SidebarContent } from "@/components/ui/sidebar";
import NavConversations from "@/components/nav-conversations";
import NavMain from "@/components/nav-main";
export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
return (
<Sidebar
className="top-(--header-height) h-[calc(100svh-var(--header-height))]!"
{...props}
>
<SidebarContent>
<NavMain />
<NavConversations />
</SidebarContent>
</Sidebar>
);
}