import { ProductGridSkeleton } from '@/components/Skeletons'
export default function Loading() {
  return (
    <div className="container-x py-8">
      <div className="h-4 w-48 animate-pulse rounded bg-soft" />
      <div className="mt-4 mb-6 h-7 w-56 animate-pulse rounded bg-soft" />
      <ProductGridSkeleton count={10} />
    </div>
  )
}
