Skip to content

Commit d9614f2

Browse files
committed
Add powersync to partners
1 parent 8d9b87d commit d9614f2

3 files changed

Lines changed: 41 additions & 0 deletions

File tree

src/images/powersync-black.svg

Lines changed: 1 addition & 0 deletions
Loading

src/images/powersync-white.svg

Lines changed: 1 addition & 0 deletions
Loading

src/utils/partners.tsx

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ import cloudflareWhiteSvg from '~/images/cloudflare-white.svg'
3131
import cloudflareBlackSvg from '~/images/cloudflare-black.svg'
3232
import workosBlackSvg from '~/images/workos-black.svg'
3333
import workosWhiteSvg from '~/images/workos-white.svg'
34+
import powersyncBlackSvg from '~/images/powersync-black.svg'
35+
import powersyncWhiteSvg from '~/images/powersync-white.svg'
3436

3537
function LearnMoreButton() {
3638
return (
@@ -752,6 +754,42 @@ const strapi = (() => {
752754
}
753755
})()
754756

757+
const powerSync = (() => {
758+
const href = 'https://powersync.com?utm_source=tanstack'
759+
760+
return {
761+
name: 'PowerSync',
762+
id: 'powersync',
763+
libraries: ['db'] as const,
764+
status: 'active' as const,
765+
startDate: 'Jan 2026',
766+
score: 0.143,
767+
href,
768+
image: {
769+
light: powersyncBlackSvg,
770+
dark: powersyncWhiteSvg,
771+
},
772+
llmDescription:
773+
'Sync engine that connects backend databases (Postgres, MongoDB, MySQL) with in-app SQLite for offline-first, real-time reactive applications.',
774+
category: 'database',
775+
content: (
776+
<>
777+
<div className="text-xs">
778+
PowerSync and TanStack are teaming up to bring{' '}
779+
<strong>offline-first sync</strong> to modern applications. PowerSync
780+
automatically syncs your backend database with in-app SQLite,
781+
delivering <strong>instant reactivity</strong>,{' '}
782+
<strong>real-time updates</strong>, and{' '}
783+
<strong>seamless offline support</strong>. Paired with TanStack DB,
784+
developers can build collaborative, always-available apps without
785+
wrestling with complex sync logic.
786+
</div>
787+
<LearnMoreButton />
788+
</>
789+
),
790+
}
791+
})()
792+
755793
export const partners: Partner[] = [
756794
codeRabbit,
757795
cloudflare,
@@ -762,6 +800,7 @@ export const partners: Partner[] = [
762800
clerk,
763801
convex,
764802
electric,
803+
powerSync,
765804
sentry,
766805
prisma,
767806
strapi,

0 commit comments

Comments
 (0)