mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
Update page.tsx
This commit is contained in:
parent
9649326a90
commit
ec29e76dbb
@ -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 (
|
||||
<div className="container mx-auto px-4 py-16">
|
||||
@ -41,4 +44,3 @@ export default function GuidesPage() {
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user