Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
{/* Hero Banner with Two-Column Layout */}
<div className="w-full relative hero-gradient">
{/* Single decorative squiggle at top right */}
<img

Check warning on line 63 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src={SquiggleSVG.src}
alt=""
className="pointer-events-none absolute overflow-hidden"
Expand Down Expand Up @@ -119,20 +119,20 @@
<a
key={platform.key}
href={platform.url}
className="sdk-tile flex flex-col items-center justify-center bg-white dark:bg-[var(--gray-2)]"
className="sdk-tile flex flex-col items-center justify-center gap-1.5 bg-white dark:bg-[var(--gray-2)]"
style={{
textDecoration: 'none',
padding: '6px',
borderRadius: '6px',
width: '70px',
height: '70px',
height: '76px',
}}
>
<PlatformIcon
platform={platform.key}
size={36}
format="lg"
style={{margin: 0, display: 'block', marginBottom: '3px'}}
style={{margin: 0, display: 'block'}}
/>
<span
className="text-[var(--gray-12)] whitespace-nowrap"
Expand Down Expand Up @@ -184,7 +184,7 @@
justifyContent: 'center',
}}
>
<img

Check warning on line 187 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src={ErrorMonitoringHero.src}
alt="Debugging in Sentry"
style={{
Expand All @@ -202,26 +202,26 @@
<p className="text-sm text-[var(--gray-11)] dark:text-white leading-relaxed">
Monitor, identify, and resolve errors and performance issues across your
applications using{' '}
<a href="/product/error-monitoring/" className="text-[#8b5cf6] underline">

Check warning on line 205 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Do not use an `<a>` element to navigate to `/product/error-monitoring/`. Use `<Link />` from `next/link` instead. See: https://nextjs.org/docs/messages/no-html-link-for-pages
Error Monitoring
</a>
,{' '}
<a

Check warning on line 209 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Do not use an `<a>` element to navigate to `/product/explore/trace-explorer/`. Use `<Link />` from `next/link` instead. See: https://nextjs.org/docs/messages/no-html-link-for-pages
href="/product/explore/trace-explorer/"
className="text-[#8b5cf6] underline"
>
Tracing
</a>
,{' '}
<a href="/product/session-replay/" className="text-[#8b5cf6] underline">

Check warning on line 216 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Do not use an `<a>` element to navigate to `/product/session-replay/`. Use `<Link />` from `next/link` instead. See: https://nextjs.org/docs/messages/no-html-link-for-pages
Session Replay
</a>
,{' '}
<a href="/product/drains/" className="text-[#8b5cf6] underline">

Check warning on line 220 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Do not use an `<a>` element to navigate to `/product/drains/`. Use `<Link />` from `next/link` instead. See: https://nextjs.org/docs/messages/no-html-link-for-pages
Logs
</a>
, and{' '}
<a href="/product/" className="text-[#8b5cf6] underline">

Check warning on line 224 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Do not use an `<a>` element to navigate to `/product/`. Use `<Link />` from `next/link` instead. See: https://nextjs.org/docs/messages/no-html-link-for-pages
more
</a>
.
Expand All @@ -245,7 +245,7 @@
justifyContent: 'center',
}}
>
<img

Check warning on line 248 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element
src={AiSentryHero.src}
alt="Fix Bugs Faster with Seer"
style={{
Expand All @@ -262,14 +262,14 @@
</h3>
<p className="text-sm text-[var(--gray-11)] dark:text-white leading-relaxed">
Debug applications automatically with{' '}
<a

Check warning on line 265 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Do not use an `<a>` element to navigate to `/product/ai-in-sentry/seer/`. Use `<Link />` from `next/link` instead. See: https://nextjs.org/docs/messages/no-html-link-for-pages
href="/product/ai-in-sentry/seer/"
className="text-[#8b5cf6] underline"
>
Seer
</a>
. Use{' '}
<a

Check warning on line 272 in src/components/home.tsx

View workflow job for this annotation

GitHub Actions / Lint

Do not use an `<a>` element to navigate to `/product/ai-in-sentry/seer/root-cause-analysis/`. Use `<Link />` from `next/link` instead. See: https://nextjs.org/docs/messages/no-html-link-for-pages
href="/product/ai-in-sentry/seer/root-cause-analysis/"
className="text-[#8b5cf6] underline"
>
Expand Down
Loading