Files
Nexumi/apps/webui/src/app/dashboard/[guildId]/loading.tsx
smueller 84476e6277 Refactor layout and home page for improved localization and session handling
- Updated RootLayout to include locale support and integrated ThemeProvider and LocaleProvider for better internationalization.
- Replaced static home page content with a redirect based on user session status, enhancing user experience by directing to the appropriate dashboard or login page.
- Switched font from Geist to Inter for improved typography consistency.
2026-07-22 14:01:09 +02:00

16 lines
459 B
TypeScript

import { Skeleton } from '@/components/ui/skeleton';
export default function GuildOverviewLoading() {
return (
<div className="space-y-8">
<Skeleton className="h-8 w-40" />
<div className="grid gap-3 sm:grid-cols-2 lg:grid-cols-3">
{Array.from({ length: 6 }).map((_, index) => (
<Skeleton key={index} className="h-16 rounded-lg" />
))}
</div>
<Skeleton className="h-64 rounded-lg" />
</div>
);
}