How to improve SEO of my nextjs website?
Answered
Western thatching ant posted this in #help-forum
Western thatching antOP
Hello,
I have a website which is this one: www.smartphone.solutions
I see sometimes it has traffic, but sometimes it doesn't. How can I improve the SEO of the website and what am I doing wrong in nextjs?
I have a website which is this one: www.smartphone.solutions
I see sometimes it has traffic, but sometimes it doesn't. How can I improve the SEO of the website and what am I doing wrong in nextjs?
Answered by B33fb0n3
SEO is a huuuuge topic. But some basics help still tho. You already using a title and description (use more keywords).
- Then add
- Also your current page don't have any SSR functionality. It's boiled out to the client. That's bad, as crawlers cant read whats on your website. So instead of requesting your own API like you currently doing, fetch on the server.
- Sign in to google search console and verify your domain ownership. Then see what pages are indexed with what content.
- And create a sitemap.xml (or let it automatically create it by using
Those are just basics, but all of those are currently NOT in your page. So integrate those and you'll get better ranked
- Then add
keywords as well to your website. - Also your current page don't have any SSR functionality. It's boiled out to the client. That's bad, as crawlers cant read whats on your website. So instead of requesting your own API like you currently doing, fetch on the server.
- Sign in to google search console and verify your domain ownership. Then see what pages are indexed with what content.
- And create a sitemap.xml (or let it automatically create it by using
next-sitemap from npm). Same for robots.txt.Those are just basics, but all of those are currently NOT in your page. So integrate those and you'll get better ranked
6 Replies
@Western thatching ant Hello,
I have a website which is this one: www.smartphone.solutions
I see sometimes it has traffic, but sometimes it doesn't. How can I improve the SEO of the website and what am I doing wrong in nextjs?
SEO is a huuuuge topic. But some basics help still tho. You already using a title and description (use more keywords).
- Then add
- Also your current page don't have any SSR functionality. It's boiled out to the client. That's bad, as crawlers cant read whats on your website. So instead of requesting your own API like you currently doing, fetch on the server.
- Sign in to google search console and verify your domain ownership. Then see what pages are indexed with what content.
- And create a sitemap.xml (or let it automatically create it by using
Those are just basics, but all of those are currently NOT in your page. So integrate those and you'll get better ranked
- Then add
keywords as well to your website. - Also your current page don't have any SSR functionality. It's boiled out to the client. That's bad, as crawlers cant read whats on your website. So instead of requesting your own API like you currently doing, fetch on the server.
- Sign in to google search console and verify your domain ownership. Then see what pages are indexed with what content.
- And create a sitemap.xml (or let it automatically create it by using
next-sitemap from npm). Same for robots.txt.Those are just basics, but all of those are currently NOT in your page. So integrate those and you'll get better ranked
Answer
Western thatching antOP
Thank you so much! Any website I can read on for the SEO you would recommend?
@Western thatching ant Thank you so much! Any website I can read on for the SEO you would recommend?
Yea, the guides from google about seo are pretty helpful. However, they are also pretty hard to read... you learn most of the things from testing and gaining experience on what works. You can suffer through the learning phase while reading a lot or you can buy the knowledge from someone you truly trust (there are a lot of people out there, that promise a lot, but dont serve)
@Western thatching antsolved?
Western thatching antOP
Yes