From 44cff629a310ab91bf9fac8f9492388d28985948 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 15:06:37 +0000 Subject: [PATCH] Bob AI: The user attached the section/component ca --- src/pages/HomePage/sections/Hero.tsx | 94 ++++------------------------ 1 file changed, 11 insertions(+), 83 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 3cd2cb9..4ed4bd7 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,90 +1,18 @@ -/* 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 HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; -import TextAnimation from "@/components/ui/TextAnimation"; -import ImageOrVideo from "@/components/ui/ImageOrVideo"; -import ScrollReveal from "@/components/ui/ScrollReveal"; +// Created by add_section_from_catalog (HeroBrand). -const primaryButton = { - text: "Get Your Free Audit", - href: "/contact" -}; -const secondaryButton = { - text: "Our Services", - href: "/services" -}; +import React from 'react'; +import HeroBrand from '@/components/sections/hero/HeroBrand'; -type HeroSplitProps = { - tag: string; - title: string; - description: string; - primaryButton: { text: string; href: string }; - secondaryButton: { text: string; href: string }; -} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); - -const HeroInline = () => { - return ( -
- -
-
-
-
-

{"Pulse Point Media NI"}

-
- -
- - - -
- - - -
-
-
-
- - - - -
-
- ); -}; - -export default function HeroSection() { +export default function HeroSection(): React.JSX.Element { return (
- +
); } -- 2.49.1