diff --git a/src/components/home.tsx b/src/components/home.tsx index 4f9b858aa6782b..9020124ecd2ac8 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 + + Debugging in Sentry +

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

- {/* Fix Bugs Faster with Seer */} + {/* Fix Faster with Seer */}
-
Fix Bugs Faster with Seer -
+

- Fix Bugs Faster with Seer + + Fix 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.

@@ -307,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 + + 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 - + .

@@ -578,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); + } `}
);