finalizing app adn fixes

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-25 22:58:21 +00:00
parent 4bffede052
commit 91525b8999
19 changed files with 2498 additions and 555 deletions

View File

@@ -13,6 +13,7 @@ import { WorkflowInsights, WorkflowInsight } from './WorkflowInsights';
interface PageHeaderProps {
title: string;
description?: string; // Optional page description shown below title
lastUpdated?: Date;
showRefresh?: boolean;
onRefresh?: () => void;
@@ -28,6 +29,7 @@ interface PageHeaderProps {
export default function PageHeader({
title,
description,
lastUpdated,
showRefresh = false,
onRefresh,
@@ -116,6 +118,9 @@ export default function PageHeader({
)}
<h2 className="text-2xl font-bold text-gray-800 dark:text-white/90">{title}</h2>
</div>
{description && (
<p className="text-sm text-gray-500 dark:text-gray-400 mt-1 max-w-xl">{description}</p>
)}
{!hideSiteSector && (
<div className="flex items-center gap-3 mt-1">
{lastUpdated && (