import Link from "next/link" const Footer = dynamic(() => import("@/components/footer"), { ssr: false }) interface Guide { title: string description: string slug: string } const guides: Guide[] = [ { title: "Setting up NVIDIA Drivers on Proxmox VE with GPU Passthrough", description: "Learn how to install and configure NVIDIA drivers on your Proxmox VE host and enable GPU passthrough to your virtual machines.", slug: "nvidia_proxmox", }, { title: "Ejemplo de Guía Adicional", description: "Esta es una guía de ejemplo para mostrar cómo se manejan múltiples guías.", slug: "example_guide", }, // Añade más guías aquí según sea necesario ] export default function GuidesPage() { return (

ProxMenux Guides

Complementary guides to make the most of your Proxmox VE.

{guides.map((guide) => (

{guide.title}

{guide.description}

))}
) }