- "use client";
- import Loading from "../components/Loading";
- export default function FilesLoading() {
- return (
- <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
- <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">
- <h1 className="text-3xl font-bold text-gray-900 dark:text-white">
- Files
- </h1>
- <div className="h-10 w-32 bg-gray-200 dark:bg-gray-700 rounded animate-pulse"></div>
- </div>
- <Loading message="Loading files..." />
- </div>
- );
- }
|