@@ -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 clerkLightSvg from '~/images/clerk-logo-light.svg'
15
+ import clerkDarkSvg from '~/images/clerk-logo-dark.svg'
14
16
import sentryWordMarkLightSvg from '~/images/sentry-wordmark-light.svg'
15
17
import sentryWordMarkDarkSvg from '~/images/sentry-wordmark-dark.svg'
16
18
import { Library } from '~/libraries'
@@ -78,6 +80,55 @@ export const partners: Partner[] = [
78
80
) ,
79
81
}
80
82
} ) ( ) ,
83
+ ( ( ) => {
84
+ const href = 'https://go.clerk.com/wOwHtuJ'
85
+
86
+ return {
87
+ name : 'Clerk' ,
88
+ href,
89
+ libraries : [ 'start' , 'router' ] ,
90
+ sidebarImgLight : clerkLightSvg ,
91
+ sidebarImgDark : clerkDarkSvg ,
92
+ sidebarImgClass : 'py-4' ,
93
+ homepageImg : (
94
+ < a
95
+ href = { href }
96
+ target = "_blank"
97
+ className = "dark:bg-black w-full h-full flex items-center justify-center px-4 py-12"
98
+ >
99
+ < img
100
+ src = { clerkLightSvg }
101
+ alt = "Clerk"
102
+ className = "w-[200px] max-w-full dark:hidden"
103
+ />
104
+ < img
105
+ src = { clerkDarkSvg }
106
+ alt = "Clerk"
107
+ className = "w-[200px] max-w-full hidden dark:block"
108
+ />
109
+ </ a >
110
+ ) ,
111
+ content : (
112
+ < >
113
+ < div >
114
+ Clerk and TanStack are partnering to elevate your application's
115
+ < strong > security and user experience</ strong > with industry-leading{ ' ' }
116
+ < strong > authentication and identity solutions</ strong > . Paired with
117
+ TanStack's non-nonsense routing and tooling, you'll be equipped to
118
+ effortlessly deliver top-notch experiences that are your users can
119
+ trust and your developers can rely on.
120
+ </ div >
121
+ < a
122
+ href = { href }
123
+ target = "_blank"
124
+ className = "text-blue-500 uppercase font-black text-sm"
125
+ >
126
+ Learn More
127
+ </ a >
128
+ </ >
129
+ ) ,
130
+ }
131
+ } ) ( ) ,
81
132
( ( ) => {
82
133
const href =
83
134
'https://ag-grid.com/react-data-grid/?utm_source=reacttable&utm_campaign=githubreacttable'
0 commit comments