From 4a26bc77757f66493a53fe99eb876382c20f8efd Mon Sep 17 00:00:00 2001 From: phillvdm Date: Tue, 26 Aug 2025 13:11:02 -0400 Subject: [PATCH 1/2] Add a 'Sync Engine' catergory for database sync engines like PowerSync, Zero, ElectricSQL and others. --- src/types/categories.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/types/categories.ts b/src/types/categories.ts index addbe7b..a2b55a9 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -31,4 +31,5 @@ export type tCategory = | 'Config' | 'Secrets' | 'IaC' - | 'Analytics'; + | 'Analytics' + | 'Sync Engine'; From 527129c3fbc694f4c5e52dba9c66585451b8d644 Mon Sep 17 00:00:00 2001 From: phillvdm Date: Tue, 26 Aug 2025 13:45:34 -0400 Subject: [PATCH 2/2] Add PowerSync logo to svgl library - Add PowerSync logo SVG files (icon and wordmarks) - Add PowerSync entry to svgs.ts with Database category - Include light and dark wordmark variants --- src/data/svgs.ts | 10 ++++++++++ static/library/powersync-wordmark-dark.svg | 1 + static/library/powersync-wordmark-light.svg | 1 + static/library/powersync.svg | 1 + 4 files changed, 13 insertions(+) create mode 100644 static/library/powersync-wordmark-dark.svg create mode 100644 static/library/powersync-wordmark-light.svg create mode 100644 static/library/powersync.svg diff --git a/src/data/svgs.ts b/src/data/svgs.ts index 3eefeeb..d45ae42 100644 --- a/src/data/svgs.ts +++ b/src/data/svgs.ts @@ -3814,5 +3814,15 @@ export const svgs: iSVG[] = [ category: 'Library', route: '/library/unjs.svg', url: 'https://unjs.io/' + }, + { + title: 'PowerSync', + category: ['Sync Engine', 'Database', 'Library'], + route: '/library/powersync.svg', + wordmark: { + light: '/library/powersync-wordmark-light.svg', + dark: '/library/powersync-wordmark-dark.svg' + }, + url: 'https://powersync.com/' } ]; diff --git a/static/library/powersync-wordmark-dark.svg b/static/library/powersync-wordmark-dark.svg new file mode 100644 index 0000000..82dfc7e --- /dev/null +++ b/static/library/powersync-wordmark-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/powersync-wordmark-light.svg b/static/library/powersync-wordmark-light.svg new file mode 100644 index 0000000..f5c0423 --- /dev/null +++ b/static/library/powersync-wordmark-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/library/powersync.svg b/static/library/powersync.svg new file mode 100644 index 0000000..6130bc3 --- /dev/null +++ b/static/library/powersync.svg @@ -0,0 +1 @@ + \ No newline at end of file