@@ -11,6 +11,8 @@ import vercelLightSvg from '~/images/vercel-light.svg'
11
11
import vercelDarkSvg from '~/images/vercel-dark.svg'
12
12
import convexWhiteSvg from '~/images/convex-white.svg'
13
13
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'
14
16
import { Library } from '~/libraries'
15
17
16
18
type Partner = {
@@ -172,6 +174,55 @@ export const partners: Partner[] = [
172
174
) ,
173
175
}
174
176
} ) ( ) ,
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
+ } ) ( ) ,
175
226
( ( ) => {
176
227
const href = 'https://bytes.dev?utm_source-tanstack&utm_campaign=tanstack'
177
228
0 commit comments