@@ -26,6 +26,8 @@ import prismaLightSvg from '~/images/prisma-light.svg'
2626import prismaDarkSvg from '~/images/prisma-dark.svg'
2727import codeRabbitLightSvg from '~/images/coderabbit-light.svg'
2828import codeRabbitDarkSvg from '~/images/coderabbit-dark.svg'
29+ import strapiLightSvg from '~/images/strapi-light.svg'
30+ import strapiDarkSvg from '~/images/strapi-dark.svg'
2931import { libraries , Library } from '~/libraries'
3032
3133function LearnMoreButton ( ) {
@@ -721,6 +723,50 @@ const codeRabbit = (() => {
721723 }
722724} ) ( )
723725
726+ const strapi = ( ( ) => {
727+ const href = 'https://strapi.link/tanstack-start'
728+
729+ return {
730+ name : 'Strapi' ,
731+ id : 'strapi' ,
732+ libraries : [ 'start' , 'router' ] as const ,
733+ sidebarImgLight : strapiLightSvg ,
734+ sidebarImgDark : strapiDarkSvg ,
735+ sidebarImgClass : 'py-4' ,
736+ status : 'active' as const ,
737+ href,
738+ homepageImg : (
739+ < div className = "w-full h-full flex items-center justify-center px-4 py-6" >
740+ < img
741+ src = { strapiLightSvg }
742+ alt = "Strapi"
743+ className = "w-[240px] max-w-full dark:hidden"
744+ />
745+ < img
746+ src = { strapiDarkSvg }
747+ alt = "Strapi"
748+ className = "w-[240px] max-w-full hidden dark:block"
749+ />
750+ </ div >
751+ ) ,
752+ content : (
753+ < >
754+ < div className = "text-xs" >
755+ Build modern websites with the{ ' ' }
756+ < strong > most customizable Headless CMS</ strong > . Strapi is the{ ' ' }
757+ < strong > open-source Headless CMS</ strong > that makes API creation
758+ easy, and with < strong > Strapi 5</ strong > you get{ ' ' }
759+ < strong > 100% TypeScript support</ strong > , a
760+ < strong > fully customizable API</ strong > , Draft/Publish, i18n, RBAC,
761+ and a rich plugin ecosystem—perfect for TanStack Start apps in the
762+ cloud or on your own servers.
763+ </ div >
764+ < LearnMoreButton />
765+ </ >
766+ ) ,
767+ }
768+ } ) ( )
769+
724770export const partners : Partner [ ] = [
725771 codeRabbit ,
726772 agGrid ,
@@ -731,6 +777,7 @@ export const partners: Partner[] = [
731777 electric ,
732778 sentry ,
733779 prisma ,
780+ strapi ,
734781 unkey ,
735782 uiDev ,
736783 nozzle ,
0 commit comments