import { NotificationBell } from "@/components/notifications/notification-bell"; import { SidebarTrigger } from "@/components/ui/sidebar"; import type { DashboardNotificationsSnapshot } from "@/lib/dashboard/notifications"; import LogoutButton from "./auth/logout-button"; import { AnimatedThemeToggler } from "./animated-theme-toggler"; import { PrivacyModeToggle } from "./privacy-mode-toggle"; import { CalculatorDialogButton } from "./calculadora/calculator-dialog"; type SiteHeaderProps = { notificationsSnapshot: DashboardNotificationsSnapshot; }; export function SiteHeader({ notificationsSnapshot }: SiteHeaderProps) { return (
|
); }