[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Help](/c/help/9) # Google shows “Vercel” as site name and no logo in search results despite correct metadata 69 views · 1 like · 4 posts Animesh Gupta (@agupta07505) · 2026-01-06 ### Description: **Current behavior:** My website hosted on Vercel ([IIIT Bhopal Study Materials](https://iiitbhopal.vercel.app/)) 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 URL ```javascript openGraph: { 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', } ``` ```javascript 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 `WebSite` schemas. ```javascript 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](https://iiitbhopal.vercel.app/) --- ### 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? Anshuman Bhardwaj (@anshumanb) · 2026-01-06 Hi @agupta07505, welcome to the Vercel Community! This seems like Google indexing issue. I can see that your OG metadata is correct so it's only a matter of time until Google reindexes your website and it starts showing up correctly in search results. Have you tried requesting a reindexing from Google Search Console? Animesh Gupta (@agupta07505) · 2026-01-06 · ♥ 1 [quote="anshumanb, post:4, topic:30900"] Have you tried requesting a reindexing from Google Search Console? [/quote] Yes, I requested reindexing in Google Search Console, and it’s been about a month. I’m still waiting for the changes to reflect in Google search results. Anshuman Bhardwaj (@anshumanb) · 2026-01-06 That's the correct approach. Google indexing timeline is quite unreliable and can take longer than usual. Keep us posted.