// Copyright: © 2026 TWWIM UG. All rights reserved. (www.twwim.com) /** * PageHeader — back link + title + intro for PluginSettingsPage. * * @layer Presentation */ import { ArrowLeft, Megaphone } from 'lucide-react'; import { Link } from '@tanstack/react-router'; import type { TFunction } from '../lib/constants'; interface PageHeaderProps { tenantId: string; tenantName: string; t: TFunction; } export function PageHeader({ tenantId, tenantName, t }: PageHeaderProps) { const title = tenantName ? t('tenants.pluginSettings.pageTitleWithTenant', { tenantName }) : t('tenants.pluginSettings.pageTitle'); return (

{title}

{t('tenants.pluginSettings.pageIntro')}

); }