"use client"; import { signOut } from "next-auth/react"; import { Anchor, LogOut } from "lucide-react"; import { NotificationBell } from "./notification-bell"; import type { Role } from "@prisma/client"; interface NotificationItem { id: string; body: string; link: string | null; isRead: boolean; sentAt: string; poId: string | null; } interface MobileHeaderProps { user: { name: string; role: Role }; initialUnreadCount: number; initialNotifications: NotificationItem[]; } export function MobileHeader({ user, initialUnreadCount, initialNotifications }: MobileHeaderProps) { return (
PPMS
); }