From f8560717413f67fc225010ae53b155cf9da57fa5 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Sat, 4 May 2024 19:56:38 +0200 Subject: [PATCH] moved landing page from component to page.jsx --- app/page.tsx | 46 ++++++++++++++++++++++++++++++++------ components/LandingPage.tsx | 43 ----------------------------------- 2 files changed, 39 insertions(+), 50 deletions(-) delete mode 100644 components/LandingPage.tsx diff --git a/app/page.tsx b/app/page.tsx index b474dd3..c4f95d8 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,11 +1,43 @@ -import LandingPage from "@/components/LandingPage"; +"use client"; +import Image from "next/image"; +import { Typewriter } from "react-simple-typewriter"; +import { Button } from "@/components/ui/button"; +import Link from "next/link"; -function page() { +export default function LandingPage() { return ( - <> - - +
+
+
+
+ proxmox +

+ Proxmox VE Helper-Scripts +

+

+ Proxmox VE Scripts for{" "} + + Your Homelab +

+
+ +
+
+
+
); } - -export default page; diff --git a/components/LandingPage.tsx b/components/LandingPage.tsx deleted file mode 100644 index 102816d..0000000 --- a/components/LandingPage.tsx +++ /dev/null @@ -1,43 +0,0 @@ -'use client' -import Image from "next/image"; -import { Typewriter } from "react-simple-typewriter"; -import { Button } from "./ui/button"; -import Link from "next/link"; - -export default function LandingPage() { - return ( -
-
-
-
- proxmox -

- Proxmox VE Helper-Scripts -

-

- Proxmox VE Scripts for{" "} - - Your Homelab -

-
- -
-
-
-
- ); -}