2

I have a GitHub Pages personal webpage built with Create-React-App ([username].github.io). I have an h1 tag with my full name in the noscript tag, and I also have it render for my homepage with an h1 tag. My name is fairly unique, and when you search it up, it's just stuff related to me, but I'd like my webpage to show up as well. I have some meta tags like description in the header with my full name as well, and I can't seem to make my webpage show up in a Google search. What is the best way to do this?

jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
  • possible duplicate of existing Q&A material, e.g. [42358158](https://stackoverflow.com/q/42358158/367456) and related. – hakre Apr 05 '23 at 18:57

1 Answers1

-1

There are several ways how you can improve your SEO for the website.

  1. If you want to be higher in Google, you can use <meta name="google-site-verification" content="..."> and the other useful metatags.
  2. Show the website to your friends and colleagues, and try to bring more attraction to it. If your website is not immediately in the Google search - it's okay. Imagine every new website will be accessible for the whole internet on Google search within seconds; I guess it would require more server power for Google
  3. You can try some SSR (server-side rendering) frameworks for your application, like Next.js or Remix. These guys can improve your website's SEO optimisation by having your website be built on the server while you still use your favourite React.

Additional reading:

I recommend you check the Google SEO guide for web developers, as it can explain some things better and wider.

Gleb
  • 1
  • 1