Description:
Current behavior:
My website hosted on Vercel (IIIT Bhopal Study Materials) appears in Google Search with the site name shown as “Vercel” instead of the actual site name “IIIT Bhopal Study Materials”. Additionally, my site logo is not showing in search results.
Expected behavior:
Google should display my actual site name and logo in search results.
What I have done so far:
-
Added consistent
<title>tag on all pages via Next.js layout -
Included Open Graph meta tags (
og:title,og:site_name,og:image) with the correct site name and logo URLopenGraph: { title: "IIIT Bhopal Study Materials | Free Notes, PYQs & More", description: "Your one-stop hub for all IIIT Bhopal study resources. Free and quality-checked.", url: 'https://iiitbhopal.vercel.app', siteName: 'IIIT Bhopal Study Materials', images: [ { url: `/assets/og-image.png`, width: 1200, height: 630, }, ], locale: 'en_US', type: 'website', }title: "IIIT Bhopal Study Materials | Free Notes, PYQs, Books & More", description: "Find all your IIIT Bhopal academic resources in one place. Download free, quality-checked access to Lecture Notes, Books, Handwritten Notes, PYQs, Assignments, and Lab Manuals & More.", -
Added JSON-LD structured data for
WebSiteschemas.const jsonLd = { '@context': 'https://schema.org', '@type': 'WebSite', name: 'IIIT Bhopal Study Materials', alternateName: 'IIIT Bhopal Notes', url: 'https://iiitbhopal.vercel.app/', description: 'Find all your IIIT Bhopal academic resources in one place. Download free, quality-checked access to Lecture Notes, Books, Handwritten Notes, PYQs, Assignments, and Lab Manuals & More.' } -
Verified and requested reindexing of the homepage in Google Search Console
-
Confirmed that all metadata and JSON-LD scripts are server-side rendered and appear in the raw HTML
Additional details:
-
Framework used: Next.js (App Router)
-
Hosting platform: Vercel
-
Site URL: IIIT Bhopal Study Materials
Question:
Is there any Vercel-specific configuration, deployment setting, or header that could cause Google to display “Vercel” instead of my site name?
Could you please advise how to resolve this issue so that Google shows the correct site name and logo?