For SEO, the site description is given by two tags generally
<meta property="description" content="A Description">
<meta property="og:description" content="A Description">
Right now, there's one common description at pages/_document.tsx, and that too only of og:description.
Remove that and add separate relevant description for each page, e.g. index.tsx, create.tsx, vote/index.tsx, vote/[id].tsx, etc.
For SEO, the site description is given by two tags generally
Right now, there's one common description at
pages/_document.tsx, and that too only ofog:description.Remove that and add separate relevant description for each page, e.g.
index.tsx,create.tsx,vote/index.tsx,vote/[id].tsx, etc.