Pre luanch plan phase 1 complete

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-05 03:40:39 +00:00
parent 1f2e734ea2
commit e93ea77c2b
60 changed files with 492 additions and 5215 deletions

View File

@@ -121,18 +121,18 @@ export default function ClusterDetail() {
if (loading) {
return (
<div className="p-6">
<>
<PageMeta title="Cluster Details" description="Loading cluster information" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading cluster...</div>
</div>
</div>
</>
);
}
if (!cluster) {
return (
<div className="p-6">
<>
<PageMeta title="Cluster Not Found" description="The requested cluster could not be found" />
<Card className="p-12 text-center">
<p className="text-gray-600 dark:text-gray-400 mb-4">Cluster not found</p>
@@ -140,12 +140,12 @@ export default function ClusterDetail() {
Back to Clusters
</Button>
</Card>
</div>
</>
);
}
return (
<div className="p-6">
<>
<PageMeta
title={`${cluster.name} - Cluster Details - IGNY8`}
description={cluster.description || `View details for cluster: ${cluster.name}`}
@@ -366,6 +366,6 @@ export default function ClusterDetail() {
</div>
</Card>
)}
</div>
</>
);
}