for website «Skill to Start» optimization
Currently, the site structure is inconvenient for both users and search engine robots. To make the site as user-friendly as possible and further promote it in search engines, I recommend implementing the following structure:
https://docs.google.com/spreadsheets/d/1da3p3XgNR39RpxhSeen-vKzRbWGDbtrq61ePZ65DnRs/edit#gid=0
At the moment, the site has a large number of page duplicates with a response code of 200:
We need to check EACH page for duplicate content with a response code of 200 and set up a 301 redirect to the corresponding main page.
The site map contains a complete list of pages on the site for redistributing weight to pages that are rarely indexed (HTML site map) and submitting pages for indexing to search engines (XML site map).
An HTML sitemap serves as a directory of all the links on a website, helping both users and search engines find the desired page on the site. The sitemap helps reduce the level of document nesting and improve indexing of pages that are deep within the site's structure.
An HTML sitemap must meet the following requirements:
The link to the HTML sitemap should be placed on ALL pages in the site footer.
Currently, the website does not have a sitemap-images.xml file.
To create the sitemap-images.xml file that meets the Sitemaps requirements for images, it should:
Add the sitemap-images.xml file to the robots.txt file.
The sitemap should update automatically after adding a new image to the site.
Website loading speed affects not only whether the visitor will wait for your site to load, but also the ranking of the site in search engines. The faster your site loads, the more visitors you can get from search engines, and therefore, the more potential customers.
Currently, the indicator of website loading speed on desktop devices is 84
On mobile devices — 45
To enter the "green zone" (90 and above) on ALL devices, you must follow these recommendations.
To reduce traffic, remove unused JavaScript code and defer the loading of scripts until they are needed. Learn more about removing unused JavaScript code.
If you are not using server-side rendering, use the React.lazy() method to split JavaScript bundles. You can also split code with a third-party library, such as loadable-components.
Polyfills and transformations allow working with new JavaScript capabilities in outdated browsers. However, most of them are not required for modern browsers. Use a new strategy for deploying script packages in JavaScript. Detection of modular and non-modular functions will reduce the code volume in modern browsers and provide support for outdated browsers. Learn more about using the new strategy for working with JavaScript.
Use the CSS descriptor font-display to allow users to see text while web fonts are loading. Learn more about font-display.
Third-party code can significantly slow down website loading times. I recommend only using essential third-party resources and ensuring they load after the main elements of the document. Learn more about minimizing the impact of third-party code.
It is recommended to reduce the time for analyzing, compiling, and executing JS scripts. To do this, you can break down the JS code into smaller fragments. Learn more about minimizing work in the main thread.