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 ( -
- -
- ); -}