5 Commits

Author SHA1 Message Date
6807dcfe50 Merge version_4_1782859988270 into main
Merge version_4_1782859988270 into main
2026-06-30 22:54:31 +00:00
kudinDmitriyUp
9c6445d694 Bob AI: Formatted schedule and added holiday note in contact section 2026-06-30 22:53:47 +00:00
84b1a1e6ef Merge version_3_1782859728417 into main
Merge version_3_1782859728417 into main
2026-06-30 22:49:29 +00:00
kudinDmitriyUp
37c62e21fa Bob AI: Update the business information to include the address '880 E Franklin Rd Ste 31 2026-06-30 22:49:26 +00:00
9e7b29995b Merge version_2_1782859373729 into main
Merge version_2_1782859373729 into main
2026-06-30 22:45:04 +00:00

View File

@@ -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 (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Book Now"
text="Ready to get your home back to comfort? Contact us today to schedule your service."
primaryButton={{
text: "Call to Schedule",
href: "tel:5551234567",
}}
secondaryButton={{
text: "Contact by Email",
href: "mailto:info@meridianhvac.com",
}}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
<section aria-label="Contact section" className="py-20">
<div className="w-content-width mx-auto">
<ScrollReveal variant="fade-blur">
<div className="flex flex-col items-center gap-8 md:gap-10 py-20 px-8 rounded card">
<div className="flex flex-col items-center gap-2">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"Book Now"}</p>
</div>
<TextAnimation
text={"Ready to get your home back to comfort? Contact us today to schedule your service."}
variant={"slide-up"}
gradientText={true}
tag="h2"
className="md:max-w-8/10 text-5xl 2xl:text-6xl leading-[1.15] font-semibold text-center text-balance"
/>
<div className="flex flex-col items-center gap-1 mt-4 text-foreground text-center text-lg">
<p><strong>Location:</strong> 880 E Franklin Rd Ste 313, Meridian, ID 83642</p>
<p><strong>Hours:</strong> 9 AM to 5 PM daily, seven days a week</p>
<p className="text-sm italic mt-1 text-accent">* Hours may vary on holidays</p>
</div>
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
<Button text={primaryButton.text} href={primaryButton.href} variant="primary" />
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />
</div>
</div>
</div>
</ScrollReveal>
</div>
</section>
);
};
export default function ContactSection() {
return (
<div data-webild-section="contact" id="contact">
<ContactInline />
</div>
);
}