Great
December 16, 2023, 6:20am
1
I deployed a portfolio website on netlify, after deploying when I clicked on my other projects I linked to the website it shows page not found
efosa-emwinghama.netlify.app
Error message is page not found, but not the website, it’s when I clicked on my other projects on the website.
clarnx
December 16, 2023, 2:13pm
2
Hi @Great , if possible can you share a repository of your site or your build logs for me to help with the debugging.
Thanks.
Great
December 16, 2023, 4:22pm
3
clarnx
December 17, 2023, 4:03pm
4
Hi @Great , thanks for sharing.
After going through your code looks like you made a mistake with the links to your projects in the href of your anchor (<a>) tags. You forgot to add the 2 forward slashed after the https:
Kindly make the changes on your project card anchor tag hrefs to the content below.
1.
<a href="https://www.figma.com/file/m8w6OFAsN35EMc0Fhs2Tfz?locale=en&type=design" target="_blank" class="projects__button button22">
<i class="ri-arrow-right-up-line"></i>
</a>
2.
<a href="https://www.figma.com/file/huTuSuSJypxzQGSF641siA?node-id=0:1&locale=en&type=design" target="_blank" class="projects__button button22">
<i class="ri-arrow-right-up-line"></i>
</a>
3.
<a href="https://www.figma.com/file/IQ37Nc1QyCwCLHywLMZvec?node-id=0:1&locale=en&type=design" target="_blank" class="projects__button button22">
<i class="ri-arrow-right-up-line"></i>
</a>
Make the changes and then redeploy.
Let me know the outcome.
Thanks.
Great
December 18, 2023, 9:11am
5
Yo you guys are the best.
It’s working now when I added the forward slash.
Thanks I really appreciate
SamO
December 18, 2023, 2:06pm
6
glad to hear you found your solution!