diff --git a/src/app/page.tsx b/src/app/page.tsx index fbc399c..ad267f8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -22,6 +22,13 @@ export default function LandingPage() { } }; + const handleLearnMore = () => { + const featureHoverSection = document.getElementById('feature-hover'); + if (featureHoverSection) { + featureHoverSection.scrollIntoView({ behavior: 'smooth' }); + } + }; + return (