From f90e3c76e1fa4fc53fb49e7391747d60723c9cb9 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 22:18:07 +0000 Subject: [PATCH] Bob AI: Update splash screen button to have a wavy top edge on the r --- src/pages/HomePage/sections/Hero.tsx | 125 ++++++++++++++++++------- src/pages/HomePage/sections/Splash.tsx | 8 +- 2 files changed, 95 insertions(+), 38 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 029062b..6e625cf 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,40 +1,97 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" 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 HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AvatarGroup from "@/components/ui/AvatarGroup"; -import React from 'react'; -import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const avatarsSrc = [ + "http://img.b2bpic.net/free-photo/man-engaged-household-tasks-scenery_23-2151741196.jpg", + "http://img.b2bpic.net/free-photo/male-jeweler-working-shop_23-2150914197.jpg", + "http://img.b2bpic.net/free-photo/man-engaged-household-task_23-2151741241.jpg", + "http://img.b2bpic.net/free-photo/sanitary-technician-gesturing-thumb-up_23-2147772204.jpg" +]; +const primaryButton = { + text: "Call 076 877 8848", + href: "tel:0768778848" +}; +const secondaryButton = { + text: "Get a Quote", + href: "#contact" +}; +const names = [ + "4.7 Stars", + "24 Google Reviews", + "24/7 Service" +]; -export default function HeroSection(): React.JSX.Element { +type HeroCenteredLogosProps = { + avatarsSrc: string[]; + avatarText: string; + title: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; + names: string[]; + hideMedia?: boolean; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +const HeroInline = () => { return ( -
- - - +
+ + {!undefined && ( +
+ +
+
+ )} + +
+
+ + + + + + +
+
+
+ +
+
+ {[...names, ...names, ...names, ...names].map((name, index) => ( +
+ {name} +
+ ))} +
+
+
+ ); +}; + +export default function HeroSection() { + return ( +
+ +
); } diff --git a/src/pages/HomePage/sections/Splash.tsx b/src/pages/HomePage/sections/Splash.tsx index cd555b0..be81458 100644 --- a/src/pages/HomePage/sections/Splash.tsx +++ b/src/pages/HomePage/sections/Splash.tsx @@ -76,15 +76,15 @@ export default function SplashSection() { className="absolute left-[-10%] right-[-10%] w-[120%] h-[150vh] text-blue-400" > - +
- {/* Layer 3: Dark Blue (Main) */} + {/* Layer 3: Deep Blue */} - +
-- 2.49.1