diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index 5d9d90e..e17ebe7 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -1,29 +1,114 @@ -// 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 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 SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const items = [ + { + icon: "Globe", + title: "Diaspora Focus", + description: "Global reach connecting our roots to modern soundscapes." + }, + { + icon: "TrendingUp", + title: "Entrepreneurial Spirit", + description: "Building sustainable ecosystems for artists and creators." + }, + { + icon: "Users", + title: "Community First", + description: "Creating spaces for growth, collaboration, and shared success." + } +]; -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 ( -
{"Our Philosophy"}
+{item.description}
+