1. Google fonts are not loading due to CSP (Content Security Policy) issue
Remedy: Add https://fonts.googleapis.com/ in CSP of the hosted website.
2. Session API fails everytime
You are calling session API which has multiple issues:
- It uses GET method, should be POST for auth
- It has no payload, looks like dummy API call
3. Tags and CTAs overlap in presets list
In list of presets on hover you are showing Use preset and Preview CTAs but these are overlapping with the category tags which makes it difficult to use.
4. There is no cursor pointer on any clickable items
Adding cursor pointer improves the UX.
5. Back button on top left doesn't function properly
Back button is always taking to the home page regardless of how deep we are in navigation, it should take the user to previous step.
6. Too much reliance on session storage
Session storage in browsers have storage limit of 5MB, you are storing all the data in session storage only, after trying out just 3-4 flows session storage quota exceeded and we get error while trying new flows. Storage usage should be optimised.
7. Scroll inside to preview doesn't work
Scroll inside to preview is in hero section of the landing page, but it doesn't work, nothing happens on scroll and.
8. Login is broken
Continue with github and continue with google both are broken, clicking that throws error. Moreover this is again GET API, should be POST.
1. Google fonts are not loading due to CSP (Content Security Policy) issue
Remedy: Add https://fonts.googleapis.com/ in CSP of the hosted website.
2. Session API fails everytime
You are calling session API which has multiple issues:
3. Tags and CTAs overlap in presets list
In list of presets on hover you are showing Use preset and Preview CTAs but these are overlapping with the category tags which makes it difficult to use.
4. There is no cursor pointer on any clickable items
Adding cursor pointer improves the UX.
5. Back button on top left doesn't function properly
Back button is always taking to the home page regardless of how deep we are in navigation, it should take the user to previous step.
6. Too much reliance on session storage
Session storage in browsers have storage limit of 5MB, you are storing all the data in session storage only, after trying out just 3-4 flows session storage quota exceeded and we get error while trying new flows. Storage usage should be optimised.
7. Scroll inside to preview doesn't work
Scroll inside to preview is in hero section of the landing page, but it doesn't work, nothing happens on scroll and.
8. Login is broken
Continue with github and continue with google both are broken, clicking that throws error. Moreover this is again GET API, should be POST.