diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9c88e70..8506183 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1454,4 +1454,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 0c255cd..c6bf9d6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,20 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { Sparkles, Briefcase, Zap, Mail, Code, Rocket, CheckCircle } from 'lucide-react'; export default function LandingPage() { + const handleScrollToPortfolio = () => { + const element = document.getElementById('portfolio'); + if (element) { + element.scrollIntoView({ behavior: 'smooth' }); + } + }; + + const handleScrollToContact = () => { + const element = document.getElementById('contact'); + if (element) { + element.scrollIntoView({ behavior: 'smooth' }); + } + }; + return ( ); -} +} \ No newline at end of file