23 lines
747 B
TypeScript
Raw Normal View History

2025-02-25 20:40:47 +01:00
import type { Metadata } from "next"
2025-03-01 16:12:26 +01:00
import { Shield } from "lucide-react"
2025-02-25 20:40:47 +01:00
export const metadata: Metadata = {
title: "ProxMenux Post-Install: Security Settings",
description:
"In-depth guide to Security Settings in the ProxMenux post-install script for enhancing Proxmox VE security measures and configurations.",
2025-03-01 16:17:08 +01:00
// ... (rest of the metadata remains the same)
2025-02-25 20:40:47 +01:00
}
export default function SecuritySettingsPage() {
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">
<Shield className="h-8 w-8 mr-2 text-blue-500" />
<h1 className="text-3xl font-bold">Security Settings</h1>
2025-03-01 16:17:08 +01:00
</div>
{/* ... (rest of the component remains the same) */}
2025-02-25 20:40:47 +01:00
</div>
)
}