import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" import TrashCards, { Trash } from "@/components/cards/TrashCards"; import EmptyRecords from "@/components/common/EmptyRecords"; const TrashPage = () => { const trashData: Trash[] = [ { file: "/images/image1.png", description: "Elephants drinking water", filetype: "image", filesize: "74MB" }, { file: "/images/image2.png", description: "wonderful sunrise in an aug...", filetype: "image", filesize: "7MB" }, { file: "/images/image3.png", description: "Beautiful selective focus sh...", filetype: "image", filesize: "23MB" }, { file: "/images/image4.png", description: "Urban double exposure port...", filetype: "image", filesize: "18MB" }, { file: "/images/image5.png", description: "Closeup shot of a beautiful...", filetype: "image", filesize: "56KB" } ] return (
Ebooks Images Videos Audios

Any images you’ve trashed can be found here. Please note that the images deleted from the Trash won’t be removed from the existing ebooks. The images will only be deleted if those ebooks are deleted.

{trashData.map((data, index) => ( ))}
); } export default TrashPage;