diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index dcddc42..e1a6d4e 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -44,6 +44,13 @@ export default function ServicesPage() { }, ]; + const handleScrollToPricing = () => { + const pricingSection = document.getElementById('pricing'); + if (pricingSection) { + pricingSection.scrollIntoView({ behavior: 'smooth' }); + } + }; + return (