Skip to content

Add missing structured data fields for Google Rich Results#4

Draft
Copilot wants to merge 2 commits intomasterfrom
copilot/update-seo-missing-fields
Draft

Add missing structured data fields for Google Rich Results#4
Copilot wants to merge 2 commits intomasterfrom
copilot/update-seo-missing-fields

Conversation

Copy link
Contributor

Copilot AI commented Jan 28, 2026

Google Rich Results Test flagged missing schema.org fields: telephone, priceRange, address, and image.

Changes

Added required fields to both structured data schemas in app/layout.tsx:

Person schema:

  • image, email, telephone
  • address (PostalAddress type with locality, region, country)

ProfessionalService schema:

  • image, email, telephone, priceRange
  • address (PostalAddress type with locality, region, country)
const personSchema = {
  "@type": "Person",
  "image": "https://www.matejhrabak.eu/avatar.webp",
  "telephone": "+420 777 777 777",
  "email": "jackvolat@gmail.com",
  "address": {
    "@type": "PostalAddress",
    "addressLocality": "Praha",
    "addressRegion": "Praha",
    "addressCountry": "CZ"
  },
  // ... existing fields
}

Notes

  • Phone number is placeholder pattern - update with actual contact number
  • Email intentionally public (already used in contact form endpoint)

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • fonts.googleapis.com
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/Portfolio_Matej_Hrabak/Portfolio_Matej_Hrabak/node_modules/.bin/next build (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Original prompt

Uprav chybějící záznamy v seo dle výsledků rich testu od google
Chybí pole telephone
Chybí pole priceRange
Chybí pole address
Chybí pole image
Chybí pole adress.

Tyto chyby jsou zároveň i pro mobilní zařízení.


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

@vercel
Copy link
Contributor

vercel bot commented Jan 28, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
matejhrabak.cz Ready Ready Preview, Comment Jan 28, 2026 0:47am

…uctured data

Co-authored-by: Crazyka51 <145287796+Crazyka51@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix missing fields in SEO based on Google rich test Add missing structured data fields for Google Rich Results Jan 28, 2026
Copilot AI requested a review from Crazyka51 January 28, 2026 12:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants