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 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 VE Helper-Scripts
-
-
- Proxmox VE Scripts for{" "}
-
- Your Homelab
-
-
-
-
-
-
-
- );
-}