From f2ace83a6a6c19670124f1dbcda8cf062fb640a1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 13:20:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.49.1 From 12a8b1d93f991b6617b23cc5a92f2ef3a8ed4368 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 13:20:12 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) 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 -- 2.49.1