Merge version_13_1783295827663 into main #12

Merged
bender merged 1 commits from version_13_1783295827663 into main 2026-07-05 23:58:25 +00:00

View File

@@ -1,19 +1,42 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
/* eslint-disable */
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import React from 'react';
import AboutText from '@/components/sections/about/AboutText';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
interface AboutTextProps {
title: string;
primaryButton?: { text: string; href: string };
secondaryButton?: { text: string; href: string };
textAnimation: "slide-up" | "fade-blur" | "fade";
}
export default function AboutSection(): React.JSX.Element {
const AboutInline = () => {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutText
title="Crafted for Excellence"
textAnimation="slide-up"
<section aria-label="About section" className="py-20">
<div className="w-content-width mx-auto flex flex-col gap-2 items-center">
<TextAnimation
text={"Crafted for Excellence"}
variant={"slide-up"}
gradientText={false}
tag="h2"
className="text-8xl md:text-9xl leading-[1.15] font-semibold text-center text-balance"
/>
</SectionErrorBoundary>
{(undefined || undefined) && (
<div className="flex flex-wrap gap-3 justify-center mt-2 md:mt-3">
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary" />}
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary" animationDelay={0.1} />}
</div>
)}
</div>
</section>
);
};
export default function AboutSection() {
return (
<div data-webild-section="about" data-section="about" id="about">
<AboutInline />
</div>
);
}