From 613b34c13b903b2847f19e3d1a795ed9ba8cee24 Mon Sep 17 00:00:00 2001 From: asblumen Date: Mon, 15 Jun 2026 15:39:02 -0700 Subject: [PATCH 1/3] Link Sentry Features card titles on homepage Make each card title in the "Sentry Features" section a hyperlink: - AI in Sentry -> /ai/ - Debugging in Sentry -> /product/ - Fix Bugs Faster with Seer -> /product/ai-in-sentry/seer/ Co-Authored-By: Claude Opus 4.8 (1M context) --- src/components/home.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/components/home.tsx b/src/components/home.tsx index 4f9b858aa6782..6bf4985729136 100644 --- a/src/components/home.tsx +++ b/src/components/home.tsx @@ -199,7 +199,9 @@ export async function Home() {

- Debugging in Sentry + + Debugging in Sentry +

Monitor, identify, and resolve errors and performance issues across your @@ -263,7 +265,12 @@ export async function Home() {

- Fix Bugs Faster with Seer + + Fix Bugs Faster with Seer +

Debug applications with{' '} @@ -328,7 +335,9 @@ export async function Home() {

- AI in Sentry + + AI in Sentry +

Integrate Sentry into your AI coding assistants using Sentry's{' '} From 348eec41f4257a5c194935f33ab4c2561d596bf2 Mon Sep 17 00:00:00 2001 From: Shannon Anahata Date: Mon, 15 Jun 2026 16:43:15 -0700 Subject: [PATCH 2/3] Use next/link for internal links and add linked card images - Replace all internal tags with from next/link for client-side navigation and prefetching - Wrap feature card images in matching their title destinations - Add subtle hover effect (opacity + scale) on linked card images - Keep external links (mcp.sentry.dev) and hash anchors (#all-sdks) as plain tags --- src/components/home.tsx | 96 ++++++++++++++++++++++++----------------- 1 file changed, 57 insertions(+), 39 deletions(-) diff --git a/src/components/home.tsx b/src/components/home.tsx index 6bf4985729136..ccba2ab730808 100644 --- a/src/components/home.tsx +++ b/src/components/home.tsx @@ -1,3 +1,4 @@ +import Link from 'next/link'; import {Banner} from 'sentry-docs/components/banner'; import {extractPlatforms, getDocsRootNode} from 'sentry-docs/docTree'; import AiInSentryHero from 'sentry-docs/imgs/AI-in-Sentry.jpeg'; @@ -118,7 +119,7 @@ export async function Home() {

{mostViewedSDKs.map(platform => ( - {platform.title} - + ))}
-
-
+

- + Debugging in Sentry - +

Monitor, identify, and resolve errors and performance issues across your applications using{' '} - Error Monitoring - + ,{' '} - Tracing - + ,{' '} - + Session Replay - + ,{' '} - + Logs - + , and{' '} - + more - + .

@@ -244,8 +252,9 @@ export async function Home() { '0 4px 20px 0 rgba(0, 0, 0, 0.08), 0 1px 3px 0 rgba(0, 0, 0, 0.05)', }} > -
-
+

- Fix Bugs Faster with Seer - +

Debug applications with{' '} - Seer - + . Get{' '} - AI-powered answers - {' '} + {' '} to questions using your application data in Sentry. Have{' '} - Autofix - {' '} + {' '} generate fixes, and{' '} - review code changes - {' '} + {' '} before merging PRs.

@@ -314,8 +323,9 @@ export async function Home() { '0 4px 20px 0 rgba(0, 0, 0, 0.08), 0 1px 3px 0 rgba(0, 0, 0, 0.05)', }} > -
-
+

- + AI in Sentry - +

Integrate Sentry into your AI coding assistants using Sentry's{' '} - + Skills - {' '} + {' '} and{' '} {' '} with your agents. Debug agents and MCP servers by{' '} - + monitoring your AI features - + .

@@ -587,6 +597,14 @@ export async function Home() { border-color: #c4b5fd !important; box-shadow: 0 6px 32px 0 rgba(124,58,237,0.18), 0 2px 12px 0 rgba(124,58,237,0.12); } + /* Linked card images */ + .card-image-link { + transition: opacity 0.2s ease, transform 0.2s ease; + } + .card-image-link:hover { + opacity: 0.8; + transform: scale(1.05); + } `}
); From f80eeb05ff5fd3e7f054c76270f3d415d700d86e Mon Sep 17 00:00:00 2001 From: Shannon Anahata Date: Mon, 15 Jun 2026 16:47:33 -0700 Subject: [PATCH 3/3] Rename card header to 'Fix Faster with Seer' --- src/components/home.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/home.tsx b/src/components/home.tsx index ccba2ab730808..9020124ecd2ac 100644 --- a/src/components/home.tsx +++ b/src/components/home.tsx @@ -244,7 +244,7 @@ export async function Home() {
- {/* Fix Bugs Faster with Seer */} + {/* Fix Faster with Seer */}
Fix Bugs Faster with Seer - Fix Bugs Faster with Seer + Fix Faster with Seer