Merge version_33_1782587345567 into main #34

Merged
bender merged 1 commits from version_33_1782587345567 into main 2026-06-27 19:10:11 +00:00
2 changed files with 0 additions and 30 deletions

View File

@@ -4,7 +4,6 @@ import FeaturesSection from './HomePage/sections/Features';
import ProductsSection from './HomePage/sections/Products';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
import ReservationsCtaSection from './HomePage/sections/ReservationsCta';
export default function HomePage(): React.JSX.Element {
@@ -16,7 +15,6 @@ export default function HomePage(): React.JSX.Element {
<ProductsSection />
<TestimonialsSection />
<FaqSection />
<ContactSection />
</>
);
}

View File

@@ -1,28 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Visit Us"
text="14 South Main St, Wilmington, VT
Sunday 12:00 PM - 9:00 PM, Monday-Thursday 4:00 PM - 8:30 PM, Friday-Saturday 4:00 PM - 9:00 PM."
primaryButton={{
text: "Call 802-464-8500",
href: "tel:8024648500",
}}
secondaryButton={{
text: "Email Us",
href: "mailto:tlawrence@lacasitavt.com",
}}
/>
</SectionErrorBoundary>
</div>
);
}