From 043583227279356ebaeee98a97888f9cb4212ec2 Mon Sep 17 00:00:00 2001 From: Kobie Botha Date: Fri, 21 Aug 2026 12:35:54 -0600 Subject: [PATCH 1/2] messaging refinements --- intro/powersync-overview.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/intro/powersync-overview.mdx b/intro/powersync-overview.mdx index 59039519..d914453d 100644 --- a/intro/powersync-overview.mdx +++ b/intro/powersync-overview.mdx @@ -1,12 +1,12 @@ --- title: PowerSync Docs -description: "PowerSync is a sync engine that keeps your backend database in sync with in-app SQLite." +description: "PowerSync is a sync engine that keeps a client-side SQLite database in sync with your backend database." sidebarTitle: Introduction --- import ClientSdks from '/snippets/client-sdks.mdx'; -Your app reads and writes directly to this local database, so it responds instantly and stays fully functional without a network connection. +Your app reads and writes directly to its local database, so user interactions feel instant and your app will continue to work even when offline. The local database is synced, so changes appear across users and devices in real-time. PowerSync is made up of the PowerSync Service and a set of client SDKs. The PowerSync Service replicates data from your backend database, partitions it based on what data each user should receive, and streams real-time updates to clients through the PowerSync client SDK. From 4a3ec1ecafa6f873bc6da416239ebd6a885ddacc Mon Sep 17 00:00:00 2001 From: Kobie Botha Date: Fri, 21 Aug 2026 13:02:12 -0600 Subject: [PATCH 2/2] nits --- intro/powersync-overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro/powersync-overview.mdx b/intro/powersync-overview.mdx index d914453d..13de0847 100644 --- a/intro/powersync-overview.mdx +++ b/intro/powersync-overview.mdx @@ -6,7 +6,7 @@ sidebarTitle: Introduction import ClientSdks from '/snippets/client-sdks.mdx'; -Your app reads and writes directly to its local database, so user interactions feel instant and your app will continue to work even when offline. The local database is synced, so changes appear across users and devices in real-time. +Your app reads and writes directly to its local database, so user interactions feel instant and your app continues to work even when offline. PowerSync syncs changes to and from your local database, so updates appear across users and devices in real-time. PowerSync is made up of the PowerSync Service and a set of client SDKs. The PowerSync Service replicates data from your backend database, partitions it based on what data each user should receive, and streams real-time updates to clients through the PowerSync client SDK.