diff --git a/personal-portfolio/src/components/Banner.js b/personal-portfolio/src/components/Banner.js index a813a6b3d..7c18e4cb2 100644 --- a/personal-portfolio/src/components/Banner.js +++ b/personal-portfolio/src/components/Banner.js @@ -46,7 +46,14 @@ export const Banner = () => { setIndex(prevIndex => prevIndex + 1); } } - + + const scrollToContacts = () => { + const contactsElement = document.getElementById('connect'); + if (contactsElement) { + contactsElement.scrollIntoView({ behavior: 'smooth' }); + } + }; + return (
@@ -58,7 +65,7 @@ export const Banner = () => { Welcome to my Portfolio

{`Hi! I'm Judy`} {text}

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

- + }