diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 7a0ea0d..52e7667 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,118 +1,19 @@ -/* eslint-disable */ -// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body -import { Star, Users, Sparkles } from 'lucide-react'; -import type { LucideIcon } from "lucide-react"; +// Created by add_section_from_catalog (HeroSplit). -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 HeroSplit from '@/components/sections/hero/HeroSplit'; -const primaryButton = { - text: "Umów wizytę", - href: "#" -}; -const secondaryButton = { - text: "Zadzwoń: 884 307 703", - href: "tel:884307703" -}; -const items = [ - { - text: "4,7★ (124 opinie)", - icon: Star - }, - { - text: "Indywidualne doradztwo", - icon: Users - }, - { - text: "Specjalizacja Blond", - icon: Sparkles - } -]; - -type HeroOverlayMarqueeProps = { - tag: string; - title: string; - description: string; - primaryButton: { text: string; href: string }; - secondaryButton: { text: string; href: string }; - avatarsSrc?: string[]; - avatarsLabel?: string; - items: { text: string; icon: LucideIcon }[]; -} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); - -const HeroInline = () => { - return ( -
- - - -
- ); -}; - -export default function HeroSection() { +export default function HeroSection(): React.JSX.Element { return (
- +
); }