'use client'
import { Skeleton } from "@/components/ui/skeleton"
import { useLanguage } from '@/lib/i18n'
export function LabSkeleton() {
const { t } = useLanguage()
return (
{/* Mesh grid background simulation */}
{/* Top Menu Skeleton */}
{/* Style Menu Skeleton (Top Right) */}
{/* Toolbar Skeleton (Bottom Center) */}
{Array.from({ length: 9 }).map((_, i) => (
))}
{/* Loading Indicator */}
{t('lab.initializing')}
{t('lab.loadingIdeas')}
)
}