diff --git a/src/components/sections/hero-section-atoms.tsx b/src/components/sections/hero-section-atoms.tsx index f2d97fe..7b295ca 100644 --- a/src/components/sections/hero-section-atoms.tsx +++ b/src/components/sections/hero-section-atoms.tsx @@ -3,12 +3,13 @@ import { useEffect, useState } from 'react'; import { motion } from 'framer-motion'; import { StaticLink } from '@/components/ui/static-link'; -import { RippleButton, SealButton } from '@/components/ui/ripple-button'; +import { RippleButton } from '@/components/ui/ripple-button'; +import { Button } from '@/components/ui/button'; import { MagneticButton, BlurReveal, CounterWithEffect } from '@/lib/animations'; import { COMPANY_INFO, STATS } from '@/lib/constants'; import { ArrowRight, Shield, Zap, Award } from 'lucide-react'; import { useReducedMotion } from '@/hooks/use-reduced-motion'; -import { trackButtonClick, trackServiceInterest } from '@/lib/analytics'; +import { trackButtonClick } from '@/lib/analytics'; interface HeroContentProps { isVisible: boolean; @@ -95,11 +96,6 @@ export function HeroDescription(_props: HeroContentProps) { export function HeroButtons({ isVisible }: HeroContentProps) { const shouldReduceMotion = useReducedMotion(); - const handleConsultClick = () => { - trackButtonClick('consult_now', 'hero_section'); - trackServiceInterest('consultation'); - }; - const handleLearnMoreClick = () => { trackButtonClick('learn_more', 'hero_section'); scrollTo('about'); @@ -113,12 +109,12 @@ export function HeroButtons({ isVisible }: HeroContentProps) { className="flex flex-col sm:flex-row items-center justify-center gap-4 mb-8" > - - +