loading.tsx 610 B

12345678910111213141516
  1. "use client";
  2. import Loading from "../components/Loading";
  3. export default function FilesLoading() {
  4. return (
  5. <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
  6. <div className="sticky top-16 z-10 bg-white dark:bg-gray-900 border-b border-gray-200 dark:border-gray-700 pb-4 mb-8 flex items-center justify-between">
  7. <h1 className="text-3xl font-bold text-gray-900 dark:text-white">
  8. Files
  9. </h1>
  10. <div className="h-10 w-32 bg-gray-200 dark:bg-gray-700 rounded animate-pulse"></div>
  11. </div>
  12. <Loading message="Loading files..." />
  13. </div>
  14. );
  15. }