From 3fca76dbbccc0ea38e3d09b6cf8720d05b0405c9 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 16 Jan 2025 15:05:48 +0100 Subject: [PATCH] Mainpage: Fix "Scripts by TTeck": Typo & Mobile View --- frontend/src/app/page.tsx | 163 +++++++++++++++----------------------- 1 file changed, 63 insertions(+), 100 deletions(-) diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index a5a15204..2ed0369b 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -1,7 +1,6 @@ "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, @@ -14,14 +13,14 @@ 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 { ArrowRightIcon } from "lucide-react"; import { useTheme } from "next-themes"; import Link from "next/link"; import { useEffect, useState } from "react"; -import { FaGithub } from "react-icons/fa"; +import { FaGithub, FaDiscord } from "react-icons/fa"; function CustomArrowRightIcon() { - return ; + return ; } export default function Page() { @@ -33,7 +32,7 @@ export default function Page() { }, [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 -

-

- We are a community-driven initiative that simplifies the setup of - Proxmox Virtual Environment (VE). -
-
- Originally created by{" "} - - tteck - - , these scripts automate and streamline -
- the process of creating and configuring Linux containers (LXC) and - virtual machines (VMs) on Proxmox VE. -
-
- With 200+ scripts to help you manage your{" "} - Proxmox VE environment.
- Whether you're a seasoned user or a newcomer, we've got - you covered. -

-
-
- - - +
+
+ + Proxmox VE Helper-Scripts + + +
+ +
+
+
+ + +
+ ❤️ 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 +

+

+ We are a community-driven initiative that simplifies the setup of + Proxmox Virtual Environment (VE). Originally created by{" "} + + tteck + + , these scripts automate and streamline the process of creating and + configuring Linux containers (LXC) and virtual machines (VMs) on + Proxmox VE. +

+
+ + + +
+
); }