Skip to content

chore: add eslint flat config + lint script

f59f8b4
Select commit
Loading
Failed to load commit list.
Open

Chore/upgrade deps next16 react19 #5

chore: add eslint flat config + lint script
f59f8b4
Select commit
Loading
Failed to load commit list.
Cursor / Cursor Bugbot completed Dec 14, 2025 in 5m 45s

Bugbot Review

Bugbot Analysis Progress (5m 52s elapsed)

✅ Gathered PR context (5s)
✅ Analyzed code changes (2s)
✅ Completed bug detection — 3 potential bugs found (5m 23s)
✅ Validation and filtering completed (0s)
✅ Posted analysis results — 2 bugs reported (21s)
✅ Analysis completed successfully (0s)

Final Result: Bugbot completed review and found 2 potential issues

Request ID: serverGenReqId_27cfd923-3163-4ed9-a7c9-cd15aebdb5ed

Details

Bug: Social image metadata points to tiny logo

openGraph.images[0] now uses logo_lowres.png while declaring 1200x630. If logo_lowres.png is a small icon asset, link previews may render as a heavily upscaled/pixelated image or be rejected by crawlers expecting large OG images.

app/blog/page.tsx#L24-L47

},
openGraph: {
type: "website",
title: `Blog | ${siteConfig.name}`,
description:
"Discover insights on AI, generative search, content strategy, and the future of digital marketing.",
url: `${siteConfig.url}/blog`,
siteName: siteConfig.name,
images: [
{
url: `${siteConfig.url}/logo_lowres.png`,
width: 1200,
height: 630,
alt: `${siteConfig.name} - Custom Items & Blocks for Minecraft`,
},
],
},
twitter: {
card: "summary_large_image",
title: `Blog | ${siteConfig.name}`,
description:
"Discover insights on AI, generative search, content strategy, and the future of digital marketing.",
images: [`${siteConfig.url}/images/preview.png`],
},

Fix in Cursor Fix in Web