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 ( -
Complementary guides to make the most of your Proxmox VE.
@@ -54,10 +55,10 @@ export default function GuidesPage() { -{guide.description}
+{guide.description}
))}