diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index c267537..2b357c9 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -1,51 +1,7 @@
-const sections = [
- {
- title: "Mobilkran",
- text: "Wir glauben an digitale Lösungen, die Menschen verbinden. Technologie soll nicht nur funktionieren, sondern begeistern.",
- image: "/mobilkran.jpg",
- },
- {
- title: "Transport",
- text: "Ein bunter Mix aus Kreativen, Entwicklern und Strategen – vereint durch die Leidenschaft für gute Ideen und sauberen Code.",
- image: "/transport.jpg",
- },
- {
- title: "ADAC Abschleppdienst",
- text: "Transparenz, Empathie und Nachhaltigkeit sind keine Buzzwords für uns, sondern gelebte Prinzipien in jedem Projekt.",
- image: "/abschleppdienst.jpg",
- },
-];
-
-export default function About() {
+export default function Page() {
return (
-
-
Über uns
+
-
- {sections.map((section, index) => (
-
- {/* Bild */}
-
-

-
-
- {/* Text */}
-
-
{section.title}
-
{section.text}
-
-
- ))}
-
-
+
);
-}
+};
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
deleted file mode 100644
index b4786c0..0000000
--- a/src/app/contact/page.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-"use client"
-import ContactForm from "@/components/ContactForm";
-
-export default function Page() {
- return (
-
-
-
- );
-};
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c24af6e..2e3f8dc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -4,20 +4,20 @@ export default function Home() {
- Willkommen bei MKV Kleinholz
+ Willkommen bei MKV Kleinholz
Ihr Mobilkranvermieter aus Mülheim und Umgebung
Mehr erfahren
-
+
+ );
+}
diff --git a/src/components/ContactForm.tsx b/src/components/ContactForm.tsx
deleted file mode 100644
index 1225f42..0000000
--- a/src/components/ContactForm.tsx
+++ /dev/null
@@ -1,87 +0,0 @@
-// components/ContactForm.tsx
-
-import { useState } from 'react';
-
-export default function ContactForm() {
- const [formData, setFormData] = useState({
- name: '',
- email: '',
- message: '',
- });
-
- const [submitted, setSubmitted] = useState(false);
-
- const handleChange = (e: React.ChangeEvent
) => {
- setFormData({ ...formData, [e.target.name]: e.target.value });
- };
-
- const handleSubmit = (e: React.FormEvent) => {
- e.preventDefault();
- // Hier kannst du die Daten an dein Backend oder einen Dienst senden
- console.log('Formulardaten:', formData);
- setSubmitted(true);
- };
-
- return (
-
-
Kontaktformular
- {submitted ? (
-
Vielen Dank für deine Nachricht!
- ) : (
-
- )}
-
- );
-}
diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index dc174fc..7ca77b4 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -9,13 +9,13 @@ const Navbar: React.FC = () => {