diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index fa1a881..4b2f8bc 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -13,10 +13,13 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import TermsOfServiceSection from './HomePage/sections/TermsOfService'; +import TrustedBySection from './HomePage/sections/TrustedBy';export default function HomePage(): React.JSX.Element { return ( <> + @@ -31,6 +34,7 @@ export default function HomePage(): React.JSX.Element { + ); } diff --git a/src/pages/HomePage/sections/TermsOfService.tsx b/src/pages/HomePage/sections/TermsOfService.tsx new file mode 100644 index 0000000..137bd51 --- /dev/null +++ b/src/pages/HomePage/sections/TermsOfService.tsx @@ -0,0 +1,82 @@ +import { motion } from "motion/react"; +import PolicyContent from "@/components/sections/legal/PolicyContent"; + +export default function TermsOfServiceSection() { + return ( +
+
+
+ +
+
+
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/TrustedBy.tsx b/src/pages/HomePage/sections/TrustedBy.tsx new file mode 100644 index 0000000..8780353 --- /dev/null +++ b/src/pages/HomePage/sections/TrustedBy.tsx @@ -0,0 +1,48 @@ +import { motion } from "motion/react"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import TextAnimation from "@/components/ui/TextAnimation"; +import Tag from "@/components/ui/Tag"; +import IconTextMarquee from "@/components/ui/IconTextMarquee"; + +export default function TrustedBySection() { + return ( +
+
+
+ +
+ +
+ +

+ Wir reparieren alle gängigen Marken mit höchster Präzision und Qualität. +

+
+
+ +
+ +
+
+
+ ); +} \ No newline at end of file