2025-02-25 20:40:47 +01:00
|
|
|
import type { Metadata } from "next"
|
2025-03-02 11:45:13 +01:00
|
|
|
import { Sliders } from "lucide-react"
|
2025-02-25 20:40:47 +01:00
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "ProxMenux Post-Install: Customization Settings",
|
|
|
|
description:
|
2025-03-02 11:45:13 +01:00
|
|
|
"Detailed guide to Customization Settings in the ProxMenux post-install script for personalizing your Proxmox VE environment.",
|
|
|
|
// ... (rest of the metadata remains the same)
|
2025-02-25 20:40:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default function CustomizationSettingsPage() {
|
|
|
|
return (
|
|
|
|
<div className="container mx-auto px-4 py-8">
|
2025-03-01 16:12:26 +01:00
|
|
|
<div className="flex items-center mb-6">
|
2025-03-02 11:45:13 +01:00
|
|
|
<Sliders className="h-8 w-8 mr-2 text-blue-500" />
|
2025-03-01 16:12:26 +01:00
|
|
|
<h1 className="text-3xl font-bold">Customization Settings</h1>
|
2025-03-01 16:17:08 +01:00
|
|
|
</div>
|
2025-03-02 11:45:13 +01:00
|
|
|
{/* ... (rest of the component remains the same) */}
|
2025-02-25 20:40:47 +01:00
|
|
|
</div>
|
|
|
|
)
|
2025-03-02 11:44:03 +01:00
|
|
|
}
|
2025-02-25 20:40:47 +01:00
|
|
|
|