Describe the bugs
While reviewing the live documentation, I identified two technical issues that affect user experience and UI consistency:
-
Broken "Follow" Link (404 Not Found): The "Website" link under the "Follow" button on the About page is configured as a relative link instead of an absolute URL. This causes a 404 error as it tries to navigate to /about/jderobot.github.io instead of the actual organization homepage.
-
FontAwesome Kit Error (403 Forbidden): The script at line 561 (https://kit.fontawesome.com/4eee35f757.js) is failing to load. This prevents icons from rendering correctly across the site.
To Reproduce
- Go to the VisualCircuit About Page.
- Click the Follow button and select Website -> Observe the 404 error.
- Open DevTools (F12) and check the Console -> Observe the 403 error for the FontAwesome kit.
Screenshots



Technical Analysis
- Navigation: The link needs to be updated from
jderobot.github.io to https://jderobot.github.io to prevent relative pathing.
- Icons: The FontAwesome Kit ID
4eee35f757 likely needs the jderobot.github.io domain added to its whitelist, or the project should move to a standard CDN.
Suggested Solution
I am happy to submit a Pull Request to fix the relative link and update the FontAwesome implementation if directed to the preferred configuration files.
Describe the bugs
While reviewing the live documentation, I identified two technical issues that affect user experience and UI consistency:
Broken "Follow" Link (404 Not Found): The "Website" link under the "Follow" button on the About page is configured as a relative link instead of an absolute URL. This causes a 404 error as it tries to navigate to
/about/jderobot.github.ioinstead of the actual organization homepage.FontAwesome Kit Error (403 Forbidden): The script at line 561 (
https://kit.fontawesome.com/4eee35f757.js) is failing to load. This prevents icons from rendering correctly across the site.To Reproduce
Screenshots
Technical Analysis
jderobot.github.iotohttps://jderobot.github.ioto prevent relative pathing.4eee35f757likely needs thejderobot.github.iodomain added to its whitelist, or the project should move to a standard CDN.Suggested Solution
I am happy to submit a Pull Request to fix the relative link and update the FontAwesome implementation if directed to the preferred configuration files.