From 01fdf1428875f2e4b4beb937b36f70fff441d743 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 22:03:03 +0000 Subject: [PATCH] Bob AI: Added terms of service section and trusted by marquee beneat --- src/pages/HomePage.tsx | 6 +- .../HomePage/sections/TermsOfService.tsx | 82 +++++++++++++++++++ src/pages/HomePage/sections/TrustedBy.tsx | 48 +++++++++++ 3 files changed, 135 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/TermsOfService.tsx create mode 100644 src/pages/HomePage/sections/TrustedBy.tsx 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 -- 2.49.1