Devjobs App with Angular, Typescript, SCSS and Tailwind
Design comparison
Community feedback
- @AhmaadAlharbiPosted about 2 years ago
looks great, it is really like the design with no different , I finished this challenge but could you really help me how to fetch data when I upload this project to versal or github ? I am using json server on localhost like this fetch('https://localhost:8000/jobs) , so how to change when host it on github pages ? sorry for bothering you but i am really lost and great job for finishing this challenge
0@CodeVeePosted about 2 years ago@AhmaadAlharbi Thanks. I appreciate the compliment. For the json server, just use fetch on the json file directly like
fetch('./data.json') .then((response) => response.json()) .then((json) => console.log(json));
1 - @farukingPosted over 2 years ago
Good job. This was a difficult one but I completed it. The search functions seems not to work, You can check mine probably, you will find some tips.
0@CodeVeePosted over 2 years ago@faruking The search works. Enter the fields and click the button
0@farukingPosted over 2 years ago@CodeVee Oh sorry, I assumed it had autocomplete feature. a few observations as well:
- When you reload after searching, it crashes
- the details page and load more button is not working
1@CodeVeePosted over 2 years ago@faruking Okay noted.
-
On the reload, that is an issue with the hosting. Netlify in this case.
-
The link is on the Job title, not the entire card.
-
Will look into the button.
Thanks
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord