diff --git a/intro/powersync-overview.mdx b/intro/powersync-overview.mdx index 59039519..13de0847 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 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.