From e540f7c7954311e8ac8b7511006fcffd5235cc88 Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Sat, 15 Feb 2025 23:41:32 +0100 Subject: [PATCH] Update page.tsx --- web/app/guides/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web/app/guides/page.tsx b/web/app/guides/page.tsx index 9e11084..1fd9c81 100644 --- a/web/app/guides/page.tsx +++ b/web/app/guides/page.tsx @@ -2,6 +2,7 @@ import fs from "fs" import path from "path" import matter from "gray-matter" import Link from "next/link" +import Footer from "@/components/footer" const guidesDirectory = path.join(process.cwd(), "..", "guides") @@ -45,7 +46,7 @@ export default function GuidesPage() { const guides = getGuides() return ( -
+

ProxMenux Guides

Complementary guides to make the most of your Proxmox VE.

@@ -54,10 +55,10 @@ export default function GuidesPage() { -

{guide.title}

-

{guide.description}

+

{guide.title}

+

{guide.description}

))}