"use client"; import { Bell } from "lucide-react"; import { Button } from "@/components/ui/button"; interface HeaderProps { title: string; } export function Header({ title }: HeaderProps) { return (

{title}

); }