"use client"; import React from 'react'; import { Bell, Search } from 'lucide-react'; interface EPDHeaderProps { title?: string; subtitle?: string; } export function EPDHeader({ title, subtitle }: EPDHeaderProps) { return (
{/* Left: Page Title */}
{title && (

{title}

{subtitle && (

{subtitle}

)}
)}
{/* Right: Search & Notifications */}
{/* Search Bar - Hidden on mobile */}
{/* Notifications */}
); }