import React from 'react'; import { Link, useLocation } from 'react-router-dom'; import { Zap } from 'lucide-react'; import { Button } from "@/components/ui/button"; const MENU_ITEMS = [ { label: 'Campaigns', href: '/' }, { label: 'Contacts', href: '/contacts' }, { label: 'Leads', href: '/leads' }, { label: 'Deals', href: '/deals' }, ]; function pathMatches(locationPath, href) { if (href === '/') return locationPath === '/'; return locationPath === href || locationPath.startsWith(`${href}/`); } export default function AppHeader({ rightContent }) { const location = useLocation(); return (

SequenceAI

Personalized Email Outreach

{rightContent}
); }