Update src/app/services/page.tsx
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user