"use client"; import AnimatedGradientText from "@/components/ui/animated-gradient-text"; import { Button } from "@/components/ui/button"; import { CardFooter } from "@/components/ui/card"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog"; import Particles from "@/components/ui/particles"; import { Separator } from "@/components/ui/separator"; import { basePath } from "@/config/siteConfig"; 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 { 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 (
❤️ Develop Instance
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!

Beta Scripts

On this Website you can find a collection of scripts that are under development and only for testing. We do not provide any support for these scripts when run in production, but you can help us by testing them and providing feedback.

); }