import React from 'react'; import { Search, Settings, Calendar, Bell } from 'lucide-react'; import { Input } from '../ui/input'; import { Button } from '../ui/button'; import { Avatar, AvatarFallback, AvatarImage } from '../ui/avatar'; interface HeaderProps { title: string; } export function Header({ title }: HeaderProps) { const currentDate = new Date().toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }); return (

{title} Overview

{currentDate} | Last updated: Just now

Admin User
Administrator
AD
); }