I believe that the items on the navigation bar should send you their description on the page once clickable. However, the items are just represented by a tag without including a link tag . In addition to that, the titles on the page don't have an id that can be used to refer to the section.
Example :
HTML of the item
<div class="sc-dLMFU sc-ikkxIA fdvdUB jAehmK"><span class="sc-fUnMCh khUcWE">Roles</span></div>
HTML of the title
<div class="css-zvi4ix" style="animation-delay: 0ms;"><h6 class="">Our Roles</h6></div>
Suggestion :
HTML of the item
<div class="sc-dLMFU sc-ikkxIA fdvdUB jAehmK"><span class="sc-fUnMCh khUcWE"><a href="#our_roles">Roles</a></span></div>
HTML of the title
<div class="css-zvi4ix" id="our_roles" style="animation-delay: 0ms;"><h6 class="">Our Roles</h6></div>
I believe that the items on the navigation bar should send you their description on the page once clickable. However, the items are just represented by a tag without including a link tag . In addition to that, the titles on the page don't have an id that can be used to refer to the section.
Example :
HTML of the item
<div class="sc-dLMFU sc-ikkxIA fdvdUB jAehmK"><span class="sc-fUnMCh khUcWE">Roles</span></div>HTML of the title
<div class="css-zvi4ix" style="animation-delay: 0ms;"><h6 class="">Our Roles</h6></div>Suggestion :
HTML of the item
<div class="sc-dLMFU sc-ikkxIA fdvdUB jAehmK"><span class="sc-fUnMCh khUcWE"><a href="#our_roles">Roles</a></span></div>HTML of the title
<div class="css-zvi4ix" id="our_roles" style="animation-delay: 0ms;"><h6 class="">Our Roles</h6></div>