mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
update
This commit is contained in:
parent
eb98f7cedb
commit
42db882dbb
@ -1,4 +1,5 @@
|
|||||||
import type { Metadata } from "next"
|
import type { Metadata } from "next"
|
||||||
|
import { Settings } from "lucide-react"
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "ProxMenux Post-Install: Basic Settings",
|
title: "ProxMenux Post-Install: Basic Settings",
|
||||||
@ -31,7 +32,10 @@ export const metadata: Metadata = {
|
|||||||
export default function BasicSettingsPage() {
|
export default function BasicSettingsPage() {
|
||||||
return (
|
return (
|
||||||
<div className="container mx-auto px-4 py-8">
|
<div className="container mx-auto px-4 py-8">
|
||||||
<h1 className="text-3xl font-bold mb-6">Basic Settings</h1>
|
<div className="flex items-center mb-6">
|
||||||
|
<Settings className="h-8 w-8 mr-2 text-blue-500" />
|
||||||
|
<h1 className="text-3xl font-bold">Basic Settings</h1>
|
||||||
|
</div>
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
The Basic Settings category in the customizable_post_install.sh script covers fundamental configurations for
|
The Basic Settings category in the customizable_post_install.sh script covers fundamental configurations for
|
||||||
your Proxmox VE installation. These settings lay the groundwork for a well-optimized system.
|
your Proxmox VE installation. These settings lay the groundwork for a well-optimized system.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import type { Metadata } from "next"
|
import type { Metadata } from "next"
|
||||||
|
import { Cpu } from "lucide-react"
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "ProxMenux Post-Install: Hardware Settings",
|
title: "ProxMenux Post-Install: Hardware Settings",
|
||||||
@ -31,7 +32,10 @@ export const metadata: Metadata = {
|
|||||||
export default function HardwareSettingsPage() {
|
export default function HardwareSettingsPage() {
|
||||||
return (
|
return (
|
||||||
<div className="container mx-auto px-4 py-8">
|
<div className="container mx-auto px-4 py-8">
|
||||||
<h1 className="text-3xl font-bold mb-6">Hardware Settings</h1>
|
<div className="flex items-center mb-6">
|
||||||
|
<Cpu className="h-8 w-8 mr-2 text-blue-500" />
|
||||||
|
<h1 className="text-3xl font-bold">Hardware Settings</h1>
|
||||||
|
</div>
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
The Hardware Settings category in the customizable_post_install.sh script focuses on optimizing Proxmox VE for
|
The Hardware Settings category in the customizable_post_install.sh script focuses on optimizing Proxmox VE for
|
||||||
your specific hardware configuration.
|
your specific hardware configuration.
|
||||||
@ -57,4 +61,3 @@ export default function HardwareSettingsPage() {
|
|||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import type { Metadata } from "next"
|
import type { Metadata } from "next"
|
||||||
|
import { Server } from "lucide-react"
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "ProxMenux Post-Install: System Settings",
|
title: "ProxMenux Post-Install: System Settings",
|
||||||
@ -31,7 +32,10 @@ export const metadata: Metadata = {
|
|||||||
export default function SystemSettingsPage() {
|
export default function SystemSettingsPage() {
|
||||||
return (
|
return (
|
||||||
<div className="container mx-auto px-4 py-8">
|
<div className="container mx-auto px-4 py-8">
|
||||||
<h1 className="text-3xl font-bold mb-6">System Settings</h1>
|
<div className="flex items-center mb-6">
|
||||||
|
<Server className="h-8 w-8 mr-2 text-blue-500" />
|
||||||
|
<h1 className="text-3xl font-bold">System Settings</h1>
|
||||||
|
</div>
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
The System Settings category in the customizable_post_install.sh script focuses on core system configurations
|
The System Settings category in the customizable_post_install.sh script focuses on core system configurations
|
||||||
and optimizations for your Proxmox VE installation.
|
and optimizations for your Proxmox VE installation.
|
||||||
@ -58,3 +62,4 @@ export default function SystemSettingsPage() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user