import Image from "next/image"; import { ExternalLink, Ellipsis, Trash2 } from 'lucide-react'; // Sample data for recent designs const recentDesigns = [ { icon: "/recent-image-1.png", title: "Good morning Gabe ...", }, { icon: "/recent-image-2.png", title: "Daphne's first eBook...", }, { icon: "/recent-image-3.png", title: "Story of my life (Story...", }, { icon: "/recent-image-4.png", title: "Good morning Gabe ...", }, { icon: "/recent-image-5.png", title: "A fantastic saga, the...", }, ]; /** * RecentDesign Component * Displays a sidebar with recent designs and a trash section * @returns JSX.Element */ export default function RecentDesign() { return (