diff --git a/src/pages/HomePage/sections/Services.tsx b/src/pages/HomePage/sections/Services.tsx index 3b68663..f1941a2 100644 --- a/src/pages/HomePage/sections/Services.tsx +++ b/src/pages/HomePage/sections/Services.tsx @@ -1,28 +1,103 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "services" 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 ImageOrVideo from "@/components/ui/ImageOrVideo"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const items = [ + { + title: "Digital Strategy & SEO", + description: "Develop tailored online strategies to boost your visibility and rankings, ensuring you reach your target audience effectively.", + imageSrc: "http://img.b2bpic.net/free-photo/promotion-marketing-advertising-branding-sale-concept_53876-133670.jpg" + }, + { + title: "Brand Development", + description: "Forge a compelling brand identity that tells your story, resonates with customers, and stands out in a crowded market.", + imageSrc: "http://img.b2bpic.net/free-photo/still-life-cardboard-organic-dinnerware_23-2149542081.jpg" + }, + { + title: "Content Creation", + description: "Produce engaging and high-quality content, from captivating visuals to persuasive copywriting, across all platforms.", + imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-studio_23-2151320720.jpg" + } +]; -export default function ServicesSection(): React.JSX.Element { +type FeatureItem = { + title: string; + description: string; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +interface FeaturesMediaCardsProps { + tag: string; + title: string; + description: string; + primaryButton?: { text: string; href: string }; + secondaryButton?: { text: string; href: string }; + items: FeatureItem[]; +} + +const ServicesInline = () => { return ( -
- - - +
+
+
+
+

{"Our Services"}

+
+ + + + + + {(undefined || undefined) && ( +
+ {undefined &&
+ )} +
+ + + + {items.map((item) => ( +
+
+ +
+
+

{item.title}

+

{item.description}

+
+
+
+
+ ))} +
+
+
+ ); +}; + +export default function ServicesSection() { + return ( +
+ +
); }