- 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.
16 lines
459 B
TypeScript
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>
|
|
);
|
|
}
|