import Link from "next/link" // Interface defining the structure of a guide interface Guide { title: string description: string slug: string } // Guide list (manually added, can be automated later) 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: "Example Additional Guide", description: "This is a sample guide to show how multiple guides are handled.", slug: "example_guide", }, // Add more guides as needed ] // Main component that renders the list of available guides export default function GuidesPage() { return (
Complementary guides to make the most of your Proxmox VE.
{guide.description}
))}