diff --git a/web/app/guides/page.tsx b/web/app/guides/page.tsx index 3176df6..b8b1360 100644 --- a/web/app/guides/page.tsx +++ b/web/app/guides/page.tsx @@ -1,11 +1,13 @@ 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", @@ -14,13 +16,14 @@ const guides: Guide[] = [ 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.", + title: "Example Additional Guide", + description: "This is a sample guide to show how multiple guides are handled.", slug: "example_guide", }, - // Añade más guías aquí según sea necesario + // Add more guides as needed ] +// Main component that renders the list of available guides export default function GuidesPage() { return (
@@ -41,4 +44,3 @@ export default function GuidesPage() {
) } -