From 9b8949dbecb76edac3a0cc64c310a2484c2dcea5 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 5 Jul 2026 23:58:10 +0000 Subject: [PATCH] Bob AI: reduce the number of form fields in the contact section to o --- src/pages/HomePage/sections/Contact.tsx | 69 +++++++++++++++++-------- 1 file changed, 47 insertions(+), 22 deletions(-) diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx index 491f907..c1593e4 100644 --- a/src/pages/HomePage/sections/Contact.tsx +++ b/src/pages/HomePage/sections/Contact.tsx @@ -1,28 +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: "Contact Us", + href: "#" +}; +const secondaryButton = { + text: "Browse Catalog", + href: "#products" +}; -export default function ContactSection(): React.JSX.Element { +const ContactInline = () => { return ( -
- - - +
+
+ +
+
+
+

{"Order Now"}

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