@@ -46,7 +46,7 @@ const projects = [
4646const navItems = [' Home' , ' Skills' , ' Projects' , ' Contact' ]
4747
4848const skills = [
49- ' Wed Design' ,
49+ ' Web Design' ,
5050 ' Full Stack Dev' ,
5151 ' ServiceNOW' ,
5252 ' Version Control' ,
@@ -169,7 +169,7 @@ const socialNetworks = [
169169 <h2 class =" mb-12 text-center text-3xl font-medium" >Skills & Expertise</h2 >
170170 <div class =" grid grid-cols-2 gap-8 md:grid-cols-4" >
171171 { skills .map ((skill ) => (
172- <div class = " rounded-lg bg-grayblue-800 p-6 text-center shadow-lg transition-transform hover:scale-105" >
172+ <div class = " rounded-lg bg-grayblue-800 p-6 text-center shadow-lg transition-transform duration-300 hover:scale-105" >
173173 <p class = " text-lg font-medium" >{ skill } </p >
174174 </div >
175175 ))}
@@ -180,20 +180,20 @@ const socialNetworks = [
180180 <h2 class =" mb-12 text-center text-3xl font-medium" >Featured Projects</h2 >
181181 <div class =" grid gap-8 md:grid-cols-2 lg:grid-cols-3" >
182182 {
183- projects .map (project => (
184- <div class = " rounded-lg bg-grayblue-800 p-6 shadow-lg transition-transform hover:-translate-y-1 " >
183+ projects .map (project =>
184+ <a href = { project . url } class = " rounded-lg bg-grayblue-800 p-6 shadow-lg transition-transform duration-300 hover:scale-105 " >
185185 <h3 class = " mb-3 text-xl font-semibold text-blue-300" >{ project .name } </h3 >
186186 <p class = " text-grayblue-300" >{ project .description } </p >
187187 <img src = { project .image .src } alt = { project .name } ></img >
188- </div >
189- ))
188+ </a >
189+ )
190190 }
191191 </div >
192192 </section >
193193
194194 <section id =" contact" class =" py-20" >
195195 <h2 class =" mb-12 text-center text-3xl text-grayblue-100 font-medium" >Get in Touch</h2 >
196- <div class =" flex justify-center space-x -8" >
196+ <div class =" flex justify-center flex-wrap gap -8" >
197197 {
198198 socialNetworks .map (socialNetwork => (
199199 <a href = { socialNetwork .url } class = " text-grayblue-300 h-8 w-8 hover:text-blue-300 transition-transform hover:scale-110" >
0 commit comments