Update src/app/services/page.tsx

This commit is contained in:
2026-03-16 02:37:04 +00:00
parent 5e8624d136
commit 75fa5dc5d3

View File

@@ -44,6 +44,13 @@ export default function ServicesPage() {
},
];
const handleScrollToPricing = () => {
const pricingSection = document.getElementById('pricing');
if (pricingSection) {
pricingSection.scrollIntoView({ behavior: 'smooth' });
}
};
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -175,6 +182,7 @@ export default function ServicesPage() {
logoText="BrandLift"
columns={footerColumns}
copyrightText="© 2025 BrandLift. All rights reserved."
onFooterPricingClick={handleScrollToPricing}
/>
</div>
</ThemeProvider>