From ca5fb12a9fca2d44145006b43a7d61365bd046f2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 20:06:28 +0000 Subject: [PATCH] Bob AI: Add success message and Call Us link below booking form --- src/pages/HomePage/sections/Contact.tsx | 68 ++++++++++++++------ src/pages/HomePage/sections/Registration.tsx | 11 ++++ 2 files changed, 58 insertions(+), 21 deletions(-) diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx index 40a1df7..ff9644e 100644 --- a/src/pages/HomePage/sections/Contact.tsx +++ b/src/pages/HomePage/sections/Contact.tsx @@ -1,27 +1,53 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "contact" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import ScrollReveal from "@/components/ui/ScrollReveal"; +import TextAnimation from "@/components/ui/TextAnimation"; +import Button from "@/components/ui/Button"; -import React from 'react'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const primaryButton = { + text: "+386 (0)41 262 430", + href: "tel:+38641262430" +}; +const secondaryButton = { + text: "info@myworldofmovement.com", + href: "mailto:info@myworldofmovement.com" +}; -export default function ContactSection(): React.JSX.Element { +const ContactInline = () => { return ( -
- - - +
+
+ +
+
+
+

{"Contact"}

+
+ + + +
+
+
+
+
+
+ ); +}; + +export default function ContactSection() { + return ( +
+ +
); } diff --git a/src/pages/HomePage/sections/Registration.tsx b/src/pages/HomePage/sections/Registration.tsx index efd9b3c..0c881e8 100644 --- a/src/pages/HomePage/sections/Registration.tsx +++ b/src/pages/HomePage/sections/Registration.tsx @@ -134,6 +134,17 @@ export default function RegistrationSection() {