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