Bob AI: Formatted schedule and added holiday note in contact section

This commit is contained in:
kudinDmitriyUp
2026-06-30 22:53:47 +00:00
parent 84b1a1e6ef
commit 9c6445d694

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. Located at 880 E Franklin Rd Ste 313, Meridian, ID 83642. Open 9 AM to 5 PM daily, seven days a week."
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>
);
}