From cada69669a6c04f9eb2e83e6d54aa162cdc40b0f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 00:10:01 +0000 Subject: [PATCH] Switch to version 2: remove src/pages/HomePage/sections/Hero.tsx --- src/pages/HomePage/sections/Hero.tsx | 78 ---------------------------- 1 file changed, 78 deletions(-) delete mode 100644 src/pages/HomePage/sections/Hero.tsx diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx deleted file mode 100644 index 896d912..0000000 --- a/src/pages/HomePage/sections/Hero.tsx +++ /dev/null @@ -1,78 +0,0 @@ -/* 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"; - -const primaryButton = { - href: "#contact", - text: "Schedule Service" -}; -const secondaryButton = { - text: "Our Services", - href: "#services" -}; - -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 ( -
- -
-
-
-
-

{"Professional HVAC Services"}

-
- - - - - -
-
-
-
- - - Cutting Edge HVAC LLC Logo - -
-
- ); -}; - -export default function HeroSection() { - return ( -
- -
- ); -}