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 */ export default function RecentDesign() { return (
{/* Logo and Title Section */}
Wodey logo
{/* Recent Designs Header */}
Recent designs
{/* Recent Designs List */}
{recentDesigns.map((design, idx) => (
{/* Design Icon */}
icon
{/* Design Title */} {design.title} {/* Action Buttons */}
))}
{/* Trash Section */}
Trash
); }