From 9c6445d694ac3bb9ada6b5a3a118af6d831e1025 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 30 Jun 2026 22:53:47 +0000 Subject: [PATCH] Bob AI: Formatted schedule and added holiday note in contact section --- src/pages/HomePage/sections/Contact.tsx | 75 +++++++++++++++++-------- 1 file changed, 53 insertions(+), 22 deletions(-) diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx index 1b34465..a502319 100644 --- a/src/pages/HomePage/sections/Contact.tsx +++ b/src/pages/HomePage/sections/Contact.tsx @@ -1,28 +1,59 @@ -// 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: "Call to Schedule", + href: "tel:5551234567" +}; +const secondaryButton = { + text: "Contact by Email", + href: "mailto:info@meridianhvac.com" +}; -export default function ContactSection(): React.JSX.Element { +const ContactInline = () => { return ( -
- - - +
+
+ +
+
+
+

{"Book Now"}

+
+ + + +
+

Location: 880 E Franklin Rd Ste 313, Meridian, ID 83642

+

Hours: 9 AM to 5 PM daily, seven days a week

+

* Hours may vary on holidays

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