| 1234567891011121314151617181920212223 |
- import { FilesTable } from "../components/filesTable";
- export default function FilesPage() {
- return (
- <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
- <main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
-
- <h1 className="text-3xl font-bold text-center sm:text-left">
- File Management
- </h1>
-
- <p className="text-sm text-center sm:text-left max-w-[600px]">
- Upload and manage your media files here. Use the upload button in the table header to add new files.
- </p>
- <div className="w-full max-w-6xl">
- <h2 className="text-2xl font-semibold mb-4">Files in Database</h2>
- <FilesTable />
- </div>
- </main>
- </div>
- );
- }
|