Hi, after working 12 hours or so I have completed the personal portfolio project. It couldn’t make it that fancy as the one shown in example. However, I am looking for some feedback on how to improve it.
My project URL is this:
https://abhishek-kumar-portfolio.netlify.app/
And, the project code is kept here for easier testing and evaluation:
Also, I want to know how to do transform animation on contact links so that it eases downwards on Y axis when a mouse hovers over it. I did used something like:
.contact-link > a {
transition: transform 0.1s ease-out;
}
.contact-link > a:hover {
transform: translateY(8px);
}
But it didn’t worked.
