From 827feb566b479c719b849d6932d2c49cc2d51853 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sat, 1 Mar 2025 23:44:27 +0100 Subject: [PATCH] Update --- .../docs/post-install/basic-settings/page.tsx | 127 +++++++++++++----- 1 file changed, 97 insertions(+), 30 deletions(-) diff --git a/web/app/docs/post-install/basic-settings/page.tsx b/web/app/docs/post-install/basic-settings/page.tsx index 2516ac0..fb622db 100644 --- a/web/app/docs/post-install/basic-settings/page.tsx +++ b/web/app/docs/post-install/basic-settings/page.tsx @@ -1,3 +1,4 @@ +import type React from "react" import type { Metadata } from "next" import { Settings } from "lucide-react" import CopyableCode from "@/components/CopyableCode" @@ -63,34 +64,92 @@ sudo apt-get install -y libguestfs-tools >

Utilities installed:

@@ -175,7 +234,16 @@ sudo apt-get install -y zfsutils-linux proxmox-backup-restore-image chrony ) } -function OptimizationStep({ number, title, description, benefits, code, children }) { +interface OptimizationStepProps { + number: number + title: string + description: string + benefits: string + code: string + children?: React.ReactNode +} + +function OptimizationStep({ number, title, description, benefits, code, children }: OptimizationStepProps) { return (
@@ -194,4 +262,3 @@ function OptimizationStep({ number, title, description, benefits, code, children
) } -