From ec29e76dbbba83743c9aa8e3e89731184c433ab6 Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Thu, 13 Feb 2025 21:47:15 +0100 Subject: [PATCH] Update page.tsx --- web/app/guides/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 (