From 2a9b768b420f894e091c599eefabaf7684c6f5d7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 7 Jun 2026 23:24:01 +0000 Subject: [PATCH] Bob AI: Add glossy green pulsing Active Now badge to contact section --- src/pages/HomePage/sections/Contact.tsx | 68 +++++++++++++++++-------- 1 file changed, 46 insertions(+), 22 deletions(-) diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx index 20041a1..5ae69b4 100644 --- a/src/pages/HomePage/sections/Contact.tsx +++ b/src/pages/HomePage/sections/Contact.tsx @@ -1,27 +1,51 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "contact" section. +// @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 ActiveBadge from "@/components/ui/ActiveBadge"; -import React from 'react'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; - -export default function ContactSection(): React.JSX.Element { +const ContactInline = () => { return ( -
- - - +
+
+ +
+
+
+ + + + + Active Now +
+
+

{"Visit Us or Order Today"}

+
+ + + +
+
+
+
+
+
+ ); +}; + +export default function ContactSection() { + return ( +
+ +
); } -- 2.49.1