Merge version_30_1782178056491 into main #31

Merged
bender merged 1 commits from version_30_1782178056491 into main 2026-06-23 01:29:07 +00:00

View File

@@ -1,39 +1,109 @@
// 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 { Building2, Paintbrush, Layers } from 'lucide-react';
import type { LucideIcon } from "lucide-react";
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import ImageOrVideo from "@/components/ui/ImageOrVideo";
import { resolveIcon } from "@/utils/resolve-icon";
import React from 'react';
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import { Award, Building2, CheckCircle, Layers, Paintbrush, Zap } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
const items = [
{
icon: Building2,
title: "Home Remodeling",
description: "Kitchen and bathroom expert renovations."
},
{
icon: Paintbrush,
title: "Expert Painting",
description: "Flawless finishes for interior and exterior."
},
{
icon: Layers,
title: "Flooring Solutions",
description: "Professional flooring installations."
}
];
export default function AboutSection(): React.JSX.Element {
type AboutFeaturesSplitProps = {
tag: string;
title: string;
description: string;
primaryButton?: { text: string; href: string };
secondaryButton?: { text: string; href: string };
items: { icon: string | LucideIcon; title: string; description: string }[];
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
const AboutInline = () => {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutFeaturesSplit
tag="About Us"
title="Commitment to Quality Craftsmanship"
description="With years of experience, OA General Contracting LLC is dedicated to enhancing the beauty and functionality of your home. We focus on cost-effective alternatives and precision workmanship to turn your vision into reality."
items={[
{
icon: Building2,
title: "Home Remodeling",
description: "Kitchen and bathroom expert renovations.",
},
{
icon: Paintbrush,
title: "Expert Painting",
description: "Flawless finishes for interior and exterior.",
},
{
icon: Layers,
title: "Flooring Solutions",
description: "Professional flooring installations.",
},
]}
imageSrc="https://storage.googleapis.com/webild/users/user_3FVvm8wEysRPV9bC25IuulDoP5E/uploaded-1782177688299-tw8i23jq.webp"
/>
</SectionErrorBoundary>
<section aria-label="About section" className="py-20">
<div className="flex flex-col gap-8 md:gap-10 mx-auto w-content-width">
<div className="flex flex-col items-center gap-2">
<ImageOrVideo imageSrc="https://storage.googleapis.com/webild/users/user_3FVvm8wEysRPV9bC25IuulDoP5E/uploaded-1782178054910-mtyrsh42.webp" className="h-16 md:h-20 mb-2 object-contain w-auto" />
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"About Us"}</p>
</div>
<TextAnimation
text={"Commitment to Quality Craftsmanship"}
variant="fade"
gradientText={true}
tag="h2"
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
/>
<TextAnimation
text={"With years of experience, OA General Contracting LLC is dedicated to enhancing the beauty and functionality of your home. We focus on cost-effective alternatives and precision workmanship to turn your vision into reality."}
variant="fade"
gradientText={false}
tag="p"
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
/>
{(undefined || undefined) && (
<div className="flex flex-wrap justify-center gap-3 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>
<div className="flex flex-col md:flex-row md:items-stretch gap-5">
<div className="flex flex-col justify-center gap-4 xl:gap-5 2xl:gap-6 p-6 xl:p-7 2xl:p-8 w-full md:w-4/10 2xl:w-35/100 card rounded">
{items.map((item, index) => {
const ItemIcon = resolveIcon(item.icon);
return (
<div key={item.title}>
<div className="flex flex-col gap-2">
<div className="flex items-center justify-center shrink-0 mb-1 size-10 primary-button rounded">
<ItemIcon className="h-2/5 w-2/5 text-primary-cta-text" strokeWidth={1.5} />
</div>
<h3 className="text-2xl font-semibold">{item.title}</h3>
<p className="text-base leading-snug">{item.description}</p>
</div>
{index < items.length - 1 && (
<div className="mt-4 xl:mt-5 2xl:mt-6 border-b border-accent/40" />
)}
</div>
);
})}
</div>
<div className="p-px w-full md:w-6/10 2xl:w-7/10 h-80 md:h-auto card rounded overflow-hidden">
<div className="relative size-full">
<ImageOrVideo imageSrc={"https://storage.googleapis.com/webild/users/user_3FVvm8wEysRPV9bC25IuulDoP5E/uploaded-1782177688299-tw8i23jq.webp"} className="absolute inset-0 object-cover rounded" />
</div>
</div>
</div>
</div>
</section>
);
};
export default function AboutSection() {
return (
<div data-webild-section="about" id="about">
<AboutInline />
</div>
);
}