mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
Update page.tsx
This commit is contained in:
parent
2768d43771
commit
837475e1c8
@ -45,7 +45,7 @@ export default function GuidesPage() {
|
||||
const guides = getGuides()
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-gray-900 text-white">
|
||||
<div className="min-h-screen bg-gray-900">
|
||||
<div className="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>
|
||||
@ -54,10 +54,10 @@ export default function GuidesPage() {
|
||||
<Link
|
||||
key={guide.slug}
|
||||
href={`/guides/${guide.slug}`}
|
||||
className="block p-6 bg-gray-800 rounded-lg shadow-md hover:shadow-lg transition-shadow"
|
||||
className="block p-6 bg-white rounded-lg shadow-md hover:shadow-lg transition-shadow"
|
||||
>
|
||||
<h2 className="text-2xl font-semibold mb-2 text-white">{guide.title}</h2>
|
||||
<p className="text-gray-300">{guide.description}</p>
|
||||
<h2 className="text-2xl font-semibold mb-2 text-gray-900">{guide.title}</h2>
|
||||
<p className="text-gray-600">{guide.description}</p>
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user