refactor: integrate voice selection utility in podcast audio generation

- remove NavUser component and update sidebar layout;
This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-08-12 16:48:03 -07:00
parent d851e1bd6d
commit 2fb86ad687
4 changed files with 71 additions and 191 deletions

View file

@ -23,7 +23,6 @@ import { Logo } from "@/components/Logo";
import { NavMain } from "@/components/sidebar/nav-main";
import { NavProjects } from "@/components/sidebar/nav-projects";
import { NavSecondary } from "@/components/sidebar/nav-secondary";
import { NavUser } from "@/components/sidebar/nav-user";
import {
Sidebar,
SidebarContent,
@ -240,9 +239,6 @@ export const AppSidebar = memo(function AppSidebar({
</SidebarContent>
<SidebarFooter>
<NavSecondary items={processedNavSecondary} className="mt-auto" />
{/* User Profile Section */}
<NavUser />
</SidebarFooter>
</Sidebar>
);