import Link from "next/link"; import { AnimatedThemeToggler } from "@/components/animated-theme-toggler"; import { Logo } from "@/components/logo"; import { NotificationBell } from "@/components/notificacoes/notification-bell"; import { RefreshPageButton } from "@/components/shared/refresh-page-button"; import type { DashboardNotificationsSnapshot } from "@/lib/dashboard/notifications"; import { NavMenu } from "./nav-menu"; import { NavbarUser } from "./navbar-user"; type AppNavbarProps = { user: { id: string; name: string; email: string; image: string | null; }; pagadorAvatarUrl: string | null; preLancamentosCount?: number; notificationsSnapshot: DashboardNotificationsSnapshot; }; export function AppNavbar({ user, pagadorAvatarUrl, preLancamentosCount = 0, notificationsSnapshot, }: AppNavbarProps) { return (
{/* Logo */} {/* Navigation */} {/* Right-side actions */}
{/* User avatar */}
); }