ProxMenux/web/app/guides/page.tsx
2025-02-16 13:44:18 +01:00

94 lines
3.3 KiB
TypeScript

import fs from "fs"
import path from "path"
import matter from "gray-matter"
import Link from "next/link"
import Footer2 from "@/components/footer2"
const guidesDirectory = path.join(process.cwd(), "..", "guides")
interface Guide {
title: string
description: string
slug: string
}
function getGuides(): Guide[] {
const guides: Guide[] = []
function findGuides(dir: string, basePath = "") {
fs.readdirSync(dir, { withFileTypes: true }).forEach((entry) => {
const fullPath = path.join(dir, entry.name)
const relativePath = path.join(basePath, entry.name)
if (entry.isDirectory()) {
findGuides(fullPath, relativePath)
} else if (entry.isFile() && entry.name.endsWith(".md")) {
const slug = relativePath.replace(/\.md$/, "")
const fileContents = fs.readFileSync(fullPath, "utf8")
const { data } = matter(fileContents)
guides.push({
title: data.title || slug.replace(/_/g, " "),
description: data.description || "No description available.",
slug,
})
}
})
}
findGuides(guidesDirectory)
return guides
}
export default function GuidesPage() {
const guides = getGuides()
return (
<div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white pt-16 flex flex-col">
<div className="flex-grow container mx-auto px-4 py-16">
<h1 className="text-4xl font-bold mb-8">ProxMenux Guides</h1>
<p className="text-xl mb-8">Complementary guides to make the most of your Proxmox VE.</p>
<div className="grid md:grid-cols-2 gap-6 mb-12">
{guides.map((guide) => (
<Link
key={guide.slug}
href={`/guides/${guide.slug}`}
className="block p-6 bg-white rounded-lg shadow-md hover:shadow-lg transition-shadow"
>
<h2 className="text-2xl font-semibold mb-2 text-gray-900">{guide.title}</h2>
<p className="text-gray-600">{guide.description}</p>
</Link>
))}
</div>
<h2 className="text-3xl font-bold mb-6">Additional Resources</h2>
<div className="grid md:grid-cols-2 gap-6">
<a
href="https://github.com/community-scripts/ProxmoxVE/blob/main/USER_SUBMITTED_GUIDES.md"
target="_blank"
rel="noopener noreferrer"
className="block p-6 bg-blue-600 rounded-lg shadow-md hover:bg-blue-700 transition-colors"
>
<h2 className="text-2xl font-semibold mb-2 text-white">Community Helper Scripts</h2>
<p className="text-gray-200">
Explore user-submitted guides and scripts for Proxmox VE from the community.
</p>
</a>
<a
href="https://pve.proxmox.com/pve-docs/index.html"
target="_blank"
rel="noopener noreferrer"
className="block p-6 bg-green-600 rounded-lg shadow-md hover:bg-green-700 transition-colors"
>
<h2 className="text-2xl font-semibold mb-2 text-white">Official Proxmox Documentation</h2>
<p className="text-gray-200">
Access the official Proxmox VE documentation for comprehensive guides and information.
</p>
</a>
</div>
</div>
<Footer2 />
</div>
)
}