diff --git a/src/App.tsx b/src/App.tsx
index cce6d1d..a3c990b 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import VorOrtServicePage from "@/pages/VorOrtServicePage";
+import AboutPage from "@/pages/AboutPage";
export default function App() {
return (
}>
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index ce77089..c707380 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -105,6 +105,8 @@ export default function Layout() {
"href": "#testimonials"
},
{ name: "Vor Ort Service", href: "/vor-ort-service" },
+ { name: "About", href: "/about" },
+
];
diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx
new file mode 100644
index 0000000..f41aeda
--- /dev/null
+++ b/src/pages/AboutPage.tsx
@@ -0,0 +1,32 @@
+import Button from "@/components/ui/Button";
+import TextAnimation from "@/components/ui/TextAnimation";
+import ImageOrVideo from "@/components/ui/ImageOrVideo";
+import ScrollReveal from "@/components/ui/ScrollReveal";
+import FeaturesIconCards from "@/components/sections/features/FeaturesIconCards";
+
+export default function AboutPage() {
+ return (
+ <>
+
+ Vor-Ort-Service
Wir kommen direkt zu Ihnen nach Hause oder ins Unternehmen und reparieren Ihr Gerät vor Ort.
+
Einsende-Service
Sie senden uns Ihr Gerät bequem zu – wir reparieren es und schicken es schnell wieder zurück.
+
Alle Marken & Modelle
Von Displaybruch bis Akkutausch. Wir reparieren alle gängigen Smartphone-Marken und -Modelle.
+
Faire Preise
Sie wissen vorher, woran Sie sind. Keine versteckten Kosten, ehrliche Beratung vom Fachmann.
+
+
+ >
+ );
+}
\ No newline at end of file
diff --git a/src/routes.ts b/src/routes.ts
index 3f0e33e..b0e82fe 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -7,4 +7,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/vor-ort-service', label: 'Vor Ort Service', pageFile: 'VorOrtServicePage' },
+ { path: '/about', label: 'About', pageFile: 'AboutPage' },
];