From 75fa5dc5d3393e2d82a85a6c43b8dcc230f4205c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 02:37:04 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) 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 (