"use client"; import AnimatedGradientText from "@/components/ui/animated-gradient-text"; import Particles from "@/components/ui/particles"; import { Button } from "@/components/ui/button"; import { Separator } from "@/components/ui/separator"; import { cn } from "@/lib/utils"; import { ArrowRightIcon, ExternalLink } from "lucide-react"; import { useTheme } from "next-themes"; import Link from "next/link"; import { useEffect, useState } from "react"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog"; import { CardFooter } from "@/components/ui/card"; import { FaGithub } from "react-icons/fa"; function CustomArrowRightIcon() { return ; } export default function Page() { const { theme } = useTheme(); const [color, setColor] = useState("#000000"); useEffect(() => { setColor(theme === "dark" ? "#ffffff" : "#000000"); }, [theme]); return (
❤️ Scripts by Tteck
Thank You! A big thank you to Tteck and the many contributors who have made this project possible. Your hard work is truly appreciated by the entire Proxmox community!

Make managing your Homelab a breeze

200+ scripts to help you manage your Proxmox VE environment . Whether you're a seasoned user or a newcomer, Proxmox VE Helper Scripts has got you covered.

); }