Pinexio URL Not Appearing in Google Search Despite Correct Metadata

Hello,

I am facing an issue where the Pinexio website (https://pinexio.vercel.app/) is not appearing in Google search results, despite having correctly configured metadata for SEO purposes.

Steps to Reproduce:
Go to https://pinexio.vercel.app/.
Check the page’s metadata using tools like Meta Tags Checker.
Verify that all required SEO meta tags (Open Graph, Twitter, canonical, etc.) are correctly set up in the code, as shown below:

export const meta = { metadataBase: new URL('https://pinexio.vercel.app'), title: "Pinexio - Documentation template", description: "A customizable Open Source documentation template built with Next.js", authors: [{ name: "Sanjay Rajeev" }], keywords: ['Pinexio', 'documentation template', 'template', 'Next.js', 'React', 'JavaScript'], publisher: 'Sanjay Rajeev', creator: 'Sanjay Rajeev', openGraph: { type: "website", title: "Pinexio - Documentation Template", description: "A customizable open-source documentation template built with Next.js.", images: [ { url: "/og_image.png", width: 1200, height: 630, alt: "Pinexio Documentation Template", }, ], }, twitter: { card: "summary_large_image", title: "Pinexio - Documentation Template", description: "A customizable open-source documentation template built with Next.js.", images: ["/og_image.png"], creator: "@sanjayrajeev", }, canonical: "https://pinexio.vercel.app", // Set the canonical URL robots: "index, follow", // Allows search engines to index and follow links hreflang: { "en": "https://pinexio.vercel.app", }, };

SEO can be tricky, so there’s no on-size-fits-all solution. Google has some great resources to help you get your site indexed:

1 Like