This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From Windows command prompt: | |
set NODE_OPTIONS=--openssl-legacy-provider | |
https://stackoverflow.com/questions/69692842/error-message-error0308010cdigital-envelope-routinesunsupported |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Hero Icons script ....................................................................................... | |
const data = { | |
php: [ | |
"PHP development", | |
"PHP is one of the most popular development languages for web applications and is one of the core technologies we utilize at Guaranteed Software. Furthermore, we support development in legacy 5.x code bases, popular 7.x versions, as well as modern 8.x endeavors.", | |
], | |
laravel: [ | |
"Laravel development", | |
"Laravel is fairly new but already a widely popular PHP framework used to create dynamic and high-performing web applications. Laravel has a well-versed set of tools that allow us to simplify the development process and improve the speed and quality of the designed program.", | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SHOW TECHNOLOGY TEXT IN THE HERO SECTION WHEN HOVERING OVER THE ICON - START | |
/** | |
* When hover over the icons in the hero section on the homepage, the title and subtitle | |
* text changes with the appropriate text for that technology. | |
* | |
* @returns {void} | |
*/ | |
const showHeroTextOnHover = () => { | |
const techs = { | |
php: { |