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 ( +
+ +
); }