Update src/app/about/page.tsx

This commit is contained in:
2026-03-16 02:37:03 +00:00
parent fa29684d60
commit ac2eeb091a

View File

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