Switch to version 1: remove src/pages/HomePage/sections/Contact.tsx

This commit is contained in:
2026-06-25 07:28:06 +00:00
parent 69b3c86d00
commit df910222dc

View File

@@ -1,27 +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="Start Today"
text="Ready to take control of your nutrition journey?"
primaryButton={{
text: "Start Tracking Free",
href: "/signup",
}}
secondaryButton={{
text: "Contact Support",
href: "/support",
}}
/>
</SectionErrorBoundary>
</div>
);
}