Phase 1 fixes

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-05 04:52:16 +00:00
parent ff44827b35
commit de0e42cca8
22 changed files with 22 additions and 221 deletions

View File

@@ -64,18 +64,6 @@ const CreditsAndBilling: React.FC = () => {
).join(' ');
};
if (loading) {
return (
<>
<PageMeta title="Usage & Billing" description="View your usage and billing" />
<div className="text-center py-12">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-primary-600 mx-auto"></div>
<p className="mt-4 text-gray-600 dark:text-gray-400">Loading billing data...</p>
</div>
</>
);
}
return (
<>
<PageMeta title="Usage & Billing" description="View your usage and billing" />

View File

@@ -375,17 +375,6 @@ export default function Sites() {
return industry?.sectors || [];
};
if (loading) {
return (
<div className="flex h-screen items-center justify-center">
<div className="text-center">
<div className="mb-4 h-8 w-8 animate-spin rounded-full border-4 border-gray-300 border-t-brand-600 mx-auto"></div>
<p className="text-gray-600 dark:text-gray-400">Loading sites...</p>
</div>
</div>
);
}
return (
<>
<PageMeta title="Your Websites" description="Manage all your websites here - Add new sites, configure settings, and track content for each one" />