#SEO Best Practices with Next.js

2 messages · Page 1 of 1 (latest)

fresh granite
#

Our setup:
Next.js TS Version 13.3.0
Pages structure

It's time to setup our baseline of SEO for a website that we've got. I've already setup the schema and robots with next-sitemap. I've also setup the title, description and a basic JSON schema.

Now, I'm looking at dynamic values and a better way to manage the data.

I've tried to setup a key , like the Next.js docs say, but it didn't work. In fact, my global value and the page value were both added to the page, which shouldn't happen. Example:

<!--- setup globally --->
<meta key='OpenGraphURL' property='og:url' content='https://veterandb.com/' />
<!--- setup on the about page --->
<meta key='OpenGraphURL' property='og:url' content='https://veterandb.com/about/' />

I also attempted to setup the next-seo package default values and single page values. None of which were added to the website. Not really sure what's happening here. Especially since Next boasts about SEO capabilities.

fresh granite
#

Any ideas on SEO management?