Skip to content

Commit c269fb6

Browse files
authored
Merge branch 'main' into markdown-links
2 parents 24c57b8 + 8298cbb commit c269fb6

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

app/images/sentry-wordmark-dark.svg

+1
Loading

app/images/sentry-wordmark-light.svg

+1
Loading

app/utils/partners.tsx

+51
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import vercelLightSvg from '~/images/vercel-light.svg'
1111
import vercelDarkSvg from '~/images/vercel-dark.svg'
1212
import convexWhiteSvg from '~/images/convex-white.svg'
1313
import convexColorSvg from '~/images/convex-color.svg'
14+
import sentryWordMarkLightSvg from '~/images/sentry-wordmark-light.svg'
15+
import sentryWordMarkDarkSvg from '~/images/sentry-wordmark-dark.svg'
1416
import { Library } from '~/libraries'
1517

1618
type Partner = {
@@ -172,6 +174,55 @@ export const partners: Partner[] = [
172174
),
173175
}
174176
})(),
177+
(() => {
178+
const href = 'https://sentry.io?utm_source=tanstack'
179+
180+
return {
181+
name: 'Sentry',
182+
libraries: ['start', 'router'],
183+
sidebarImgLight: sentryWordMarkDarkSvg,
184+
sidebarImgDark: sentryWordMarkLightSvg,
185+
sidebarImgClass: 'py-2 scale-[1.1]',
186+
href,
187+
homepageImg: (
188+
<a
189+
href={href}
190+
target="_blank"
191+
className="dark:bg-black w-full h-full flex items-center justify-center px-4 py-6"
192+
>
193+
<img
194+
src={sentryWordMarkDarkSvg}
195+
alt="Sentry"
196+
className="w-[275px] max-w-full dark:hidden"
197+
/>
198+
<img
199+
src={sentryWordMarkLightSvg}
200+
alt="Sentry"
201+
className="w-[275px] max-w-full hidden dark:block"
202+
/>
203+
</a>
204+
),
205+
content: (
206+
<>
207+
<div>
208+
Sentry and TanStack are on a mission to make sure your apps are
209+
<strong> error-free and high-performers</strong>. Sentry's
210+
best-in-class error monitoring and performance insights combined
211+
with TanStack's cutting-edge libraries ensure that you can deliver
212+
the best possible experience to your users. Together, we're
213+
committed to making sure that you can build with confidence.
214+
</div>
215+
<a
216+
href={href}
217+
target="_blank"
218+
className="text-blue-500 uppercase font-black text-sm"
219+
>
220+
Learn More
221+
</a>
222+
</>
223+
),
224+
}
225+
})(),
175226
(() => {
176227
const href = 'https://bytes.dev?utm_source-tanstack&utm_campaign=tanstack'
177228

0 commit comments

Comments
 (0)