import Link from "next/link" 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 (
Complementary guides to make the most of your Proxmox VE.
{guide.description}
))}