prixite/prixite.github.io

SEO 1: Fix index page links

Closed this issue · 0 comments

We are not using anchor or link tags for navigation. We use JavaScript onClick event to push path to router. For example, here is a reference code of how we have implemented navigation: https://github.com/prixite/prixite.github.io/blob/master/components/Presentational/Service/Service.tsx#L18. Due to this, our HTML doesn't include any anchor tag. Here is the HTML for service block:

  <div
    class="MuiGrid-root MuiGrid-item MuiGrid-grid-sm-12 MuiGrid-grid-md-3 service css-b1ct2p"
  >
    <div class="MuiBox-root css-pvcnzp">
      <div class="service-image-container MuiBox-root css-0">
        <img
          alt="service-image"
          loading="lazy"
          width="22"
          height="20"
          decoding="async"
          data-nimg="1"
          src="/images/services/webIcon.png"
          style="color: transparent"
        />
      </div>
      <p class="MuiTypography-root MuiTypography-body1 css-1txgs45">
        Web App Development
      </p>
      <p
        class="MuiTypography-root MuiTypography-body1 service-description css-1xt6mj4"
      >
        Prixite being the exquisite web development brands offers innovative
        solutions to your web development needs in today’s dynamics.
      </p>
    </div>
  </div>

As you can see, we don't have any anchor tag. This means that Google Bot cannot navigate to detail page of the service. We need to fix this. In this issue, we fix the service grid:

  • Fix Web App Development service item
  • Fix Machine Learning service item
  • Fix DevOps service item
  • Fix Scraping service item
  • Fix Python Experts service item
  • Fix Mobile Application Development service item
  • Fix Progressive Web App service item
  • Fix React Development service item