"use client"; import { cn } from "@/lib/utils"; import { useI18n } from "@/lib/i18n"; export function LoadingSkeleton({ className = "" }: { className?: string }) { const { t } = useI18n(); return
; } export function PageLoadingSkeleton() { return (
{Array.from({ length: 4 }, (_, index) => )}
); }