Update page.tsx

This commit is contained in:
MacRimi 2025-05-17 23:37:47 +02:00
parent 0d1997dad2
commit dccb554cf2

View File

@ -2,7 +2,7 @@ import type React from "react"
import type { Metadata } from "next" import type { Metadata } from "next"
import Link from "next/link" import Link from "next/link"
import Image from "next/image" import Image from "next/image"
import { HardDrive, Info, Database, Server, Monitor, Star, Cpu, Github } from "lucide-react" import { HardDrive, Info, Database, Server, MonitorIcon, Star, Cpu, Github } from "lucide-react"
import { Badge } from "@/components/ui/badge" import { Badge } from "@/components/ui/badge"
export const metadata: Metadata = { export const metadata: Metadata = {
@ -97,11 +97,6 @@ function NASSystemItem({
{isExternal && ( {isExternal && (
<div className="flex items-center"> <div className="flex items-center">
<a
href="https://github.com/R0GGER/proxmox-zimaos"
target="_blank"
rel="noopener noreferrer"
>
<Badge <Badge
variant="outline" variant="outline"
className="flex items-center gap-1 bg-gray-100 hover:bg-gray-200 text-gray-800 border-gray-300" className="flex items-center gap-1 bg-gray-100 hover:bg-gray-200 text-gray-800 border-gray-300"
@ -109,8 +104,6 @@ function NASSystemItem({
<Github className="h-3.5 w-3.5 text-gray-700" /> <Github className="h-3.5 w-3.5 text-gray-700" />
<span className="text-xs font-medium">External Script</span> <span className="text-xs font-medium">External Script</span>
</Badge> </Badge>
</a>
{/* Removed the external link icon since the title now links to the external URL */}
</div> </div>
)} )}
</div> </div>
@ -221,7 +214,7 @@ export default function SystemNASPage() {
"Virtualization: Yes (KVM)", "Virtualization: Yes (KVM)",
"Hardware Requirements: High", "Hardware Requirements: High",
]} ]}
href="/docs/create-vm/system-nas/system-nas-others" href="/docs/virtual-machines/system-nas/truenas-scale"
/> />
<NASSystemItem <NASSystemItem
@ -235,7 +228,7 @@ export default function SystemNASPage() {
"Virtualization: Yes (Jails)", "Virtualization: Yes (Jails)",
"Hardware Requirements: Moderate to High", "Hardware Requirements: Moderate to High",
]} ]}
href="/docs/create-vm/system-nas/system-nas-others" href="/docs/virtual-machines/system-nas/truenas-core"
/> />
<NASSystemItem <NASSystemItem
@ -254,7 +247,7 @@ export default function SystemNASPage() {
"Virtualization: Yes (via plugins)", "Virtualization: Yes (via plugins)",
"Hardware Requirements: Low", "Hardware Requirements: Low",
]} ]}
href="/docs/create-vm/system-nas/system-nas-others" href="/docs/virtual-machines/system-nas/openmediavault"
/> />
<NASSystemItem <NASSystemItem
@ -273,13 +266,13 @@ export default function SystemNASPage() {
"Virtualization: Yes (Docker)", "Virtualization: Yes (Docker)",
"Hardware Requirements: Moderate", "Hardware Requirements: Moderate",
]} ]}
href="/docs/create-vm/system-nas/system-nas-others" href="/docs/virtual-machines/system-nas/rockstor"
/> />
<NASSystemItem <NASSystemItem
name="ZimaOS" name="ZimaOS"
description="ZimaOS is a lightweight, customizable NAS operating system designed for simplicity and performance, with a focus on media streaming and home automation." description="ZimaOS is a lightweight, customizable NAS operating system designed for simplicity and performance, with a focus on media streaming and home automation."
icon={<Monitor className="h-6 w-6 text-blue-500" />} icon={<MonitorIcon className="h-6 w-6 text-blue-500" />}
features={[ features={[
"Low resource footprint", "Low resource footprint",
"Docker support", "Docker support",
@ -292,9 +285,9 @@ export default function SystemNASPage() {
"Virtualization: Yes (Docker)", "Virtualization: Yes (Docker)",
"Hardware Requirements: Low", "Hardware Requirements: Low",
]} ]}
href="/docs/virtual-machines/system-nas/zimaos"
isExternal={true} isExternal={true}
externalUrl="https://www.zimaspace.com/docs/zimaos/" externalUrl="https://github.com/R0GGER/proxmox-zimaos"
/> />
</div> </div>