import { Book, GitBranch, FileText, Github } from "lucide-react" import Link from "next/link" const resources = [ { icon: , title: "Documentation", description: "Comprehensive guides to get you started", link: "/docs/introduction", }, { icon: , title: "Changelog", description: "Stay up to date with the latest changes", link: "/changelog", }, { icon: , title: "Guides", description: "Step-by-step tutorials for common tasks", link: "/guides", }, { icon: , title: "GitHub Repository", description: "Explore the source code and contribute", link: "https://github.com/MacRimi/ProxMenux", }, ] export default function Resources() { return ( {resources.map((resource, index) => ( {resource.icon} {resource.title} {resource.description} ))} ) }
{resource.description}