5 Commits

Author SHA1 Message Date
f4ecca885c Merge version_5_1783295812519 into main
Merge version_5_1783295812519 into main
2026-07-05 23:58:57 +00:00
kudinDmitriyUp
9b8949dbec Bob AI: reduce the number of form fields in the contact section to o 2026-07-05 23:58:10 +00:00
44b86973fd Merge version_4_1783295400373 into main
Merge version_4_1783295400373 into main
2026-07-05 23:51:13 +00:00
0ff8545fe0 Merge version_3_1783295220223 into main
Merge version_3_1783295220223 into main
2026-07-05 23:48:34 +00:00
0c532abccc Merge version_2_1783295068728 into main
Merge version_2_1783295068728 into main
2026-07-05 23:46:39 +00:00

View File

@@ -1,28 +1,53 @@
// 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: "Contact Us",
href: "#"
};
const secondaryButton = {
text: "Browse Catalog",
href: "#products"
};
export default function ContactSection(): React.JSX.Element {
const ContactInline = () => {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Order Now"
text="Ready to bring MANNS Chocolates to your next event? Reach out today to start your order."
primaryButton={{
text: "Contact Us",
href: "#",
}}
secondaryButton={{
text: "Browse Catalog",
href: "#products",
}}
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>{"Order Now"}</p>
</div>
<TextAnimation
text={"Ready to bring MANNS Chocolates to your next event? Reach out today to start your order."}
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-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" data-section="contact" id="contact">
<ContactInline />
</div>
);
}