page.tsx 733 B

12345678910111213141516171819202122
  1. import { FilesTable } from "../components/filesTable";
  2. export default function FilesPage() {
  3. return (
  4. <div className="min-h-screen bg-gradient-to-br from-gray-50 to-gray-100 dark:from-gray-900 dark:to-gray-800">
  5. <div className="container mx-auto px-4 py-8">
  6. <div className="mb-8">
  7. <h1 className="text-3xl font-bold text-gray-900 dark:text-white mb-2">
  8. File Management
  9. </h1>
  10. <p className="text-gray-600 dark:text-gray-300">
  11. Upload and manage your media files here. Use the upload button in the table header to add new files.
  12. </p>
  13. </div>
  14. <div className="w-full">
  15. <FilesTable />
  16. </div>
  17. </div>
  18. </div>
  19. );
  20. }