import { useLocation } from "@remix-run/react"; const PAGE_TITLES: Record = { "/home/dashboard": "Memory graph", "/home/conversation": "Conversation", "/home/integrations": "Integrations", "/home/activity": "Activity", }; function getHeaderTitle(pathname: string): string { // Try to match the most specific path first for (const key of Object.keys(PAGE_TITLES)) { if (pathname.startsWith(key)) { return PAGE_TITLES[key]; } } // Default fallback return "Documents"; } export function SiteHeader() { const location = useLocation(); const title = getHeaderTitle(location.pathname); return (

{title}

); }