import { GeneralLayout } from "~/components/general-layout"; import { FileCard, FileCardList, FileTypes } from "~/components/file-card"; import { DataTable } from "~/components/data-table"; import { columns } from "./columns"; import { Input } from "~/components/ui/input"; import { Button } from "~/components/ui/button"; export default function FileManager() { const isLogged = true; if (!isLogged) { window.location.href = "/login"; } return (

File Manager

Files

} placeholder="Search files by name or CID" className="border-ring font-bold w-full grow h-12 flex-1" />
); } const AddIcon = ({ className }: { className?: string }) => { return ( ); };