My portfolio site is working fine on local host but when i deploy it on vercel,url’s of my linkedin profile and github page are showing 404:NOT_FOUND error
Here is the link of my website text.Can anyone help me i am stuck here for long
My portfolio site is working fine on local host but when i deploy it on vercel,url’s of my linkedin profile and github page are showing 404:NOT_FOUND error
Here is the link of my website text.Can anyone help me i am stuck here for long
3
Answers
The links that you have added in the href are not correct. You must add //, like this after https.
https://github.com/%5Busername%5D
similarly with LinkedIn.
The link URL seem to be the problem, your current onclick function has
onclick="location.href='https:www.linkedin.com/in/shaileshoza/'"
and it should beonclick="location.href='https://www.linkedin.com/in/shaileshoza/'"
. You need to include // after the semicolon (:) on each link as other links have the same error. Updated code below.you did put link without ://
put this:
onclick="location.href='https://www.linkedin.com/in/shaileshoza/'"
insted of this:
onclick="location.href='https:www.linkedin.com/in/shaileshoza/'"