From b4227ecc8b417b617fc99def2984f1280e8dcafc Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 3 Jul 2026 14:30:24 +0000 Subject: [PATCH] Bob AI: Add persistent mobile-friendly call-to-action bar --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/FloatingCta.tsx | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/FloatingCta.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 91383e4..4576e51 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -17,7 +17,8 @@ import ContactSection from './HomePage/sections/Contact'; import FaqSection from './HomePage/sections/Faq'; import CertificationsSection from './HomePage/sections/Certifications'; -import ClientLogosSection from './HomePage/sections/ClientLogos';export default function HomePage(): React.JSX.Element { +import ClientLogosSection from './HomePage/sections/ClientLogos'; +import FloatingCtaSection from './HomePage/sections/FloatingCta';export default function HomePage(): React.JSX.Element { return ( <> @@ -38,6 +39,7 @@ import ClientLogosSection from './HomePage/sections/ClientLogos';export default + ); } diff --git a/src/pages/HomePage/sections/FloatingCta.tsx b/src/pages/HomePage/sections/FloatingCta.tsx new file mode 100644 index 0000000..d547955 --- /dev/null +++ b/src/pages/HomePage/sections/FloatingCta.tsx @@ -0,0 +1,15 @@ +import Button from "@/components/ui/Button"; + +export default function FloatingCta() { + return ( +
+
+
+ Ready to order? + Get in touch today +
+
+
+ ); +}