diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index 7ce5d5d..492c852 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -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 ( -
- - - +
+
+
+ +
+

{"About Us"}

+
+ + + + + + {(undefined || undefined) && ( +
+ {undefined &&
+ )} +
+ +
+
+ {items.map((item, index) => { + const ItemIcon = resolveIcon(item.icon); + return ( +
+
+
+ +
+

{item.title}

+

{item.description}

+
+ {index < items.length - 1 && ( +
+ )} +
+ ); + })} +
+ +
+
+ +
+
+
+
+ ); +}; + +export default function AboutSection() { + return ( +
+ +
); }