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

This commit is contained in:
2026-06-13 20:57:47 +00:00
parent 678ab1cbf0
commit 8a0e53f60c

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-cta" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactCtaSection(): React.JSX.Element {
return (
<div id="contact-cta" data-section="contact-cta">
<SectionErrorBoundary name="contact-cta">
<ContactCta
tag="Join Us"
text="Join the community. Sign up for exclusive drops."
primaryButton={{
text: "Newsletter Signup",
href: "/contact",
}}
secondaryButton={{
text: "Contact Support",
href: "/contact",
}}
/>
</SectionErrorBoundary>
</div>
);
}