From 92c6be195248034a29f0c97669b11978857e6523 Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Tue, 25 Aug 2026 23:52:39 -0700 Subject: [PATCH] docs: improve SEO descriptions --- docs/content/docs/authentication.mdx | 2 +- docs/content/docs/background-work.mdx | 2 +- docs/content/docs/index.mdx | 3 ++- docs/content/docs/quickstart.mdx | 2 +- docs/content/docs/realtime.mdx | 2 +- docs/content/docs/reference.mdx | 4 ++-- docs/content/docs/routing.mdx | 2 +- docs/content/docs/state-and-data.mdx | 2 +- 8 files changed, 10 insertions(+), 9 deletions(-) diff --git a/docs/content/docs/authentication.mdx b/docs/content/docs/authentication.mdx index b4b1f38f9..ad0799f02 100644 --- a/docs/content/docs/authentication.mdx +++ b/docs/content/docs/authentication.mdx @@ -1,6 +1,6 @@ --- title: "Authentication" -description: "Authenticating requests to a deployed app." +description: "Authenticate requests to deployed Dynamic Apps with Hono middleware, route guards, and application-level authorization before handlers run." --- ## Authentication diff --git a/docs/content/docs/background-work.mdx b/docs/content/docs/background-work.mdx index 8e5b54c63..4d1a7e545 100644 --- a/docs/content/docs/background-work.mdx +++ b/docs/content/docs/background-work.mdx @@ -1,6 +1,6 @@ --- title: "Background Work" -description: "Durable jobs and recurring schedules inside an app." +description: "Run durable background jobs and recurring schedules inside Dynamic Apps with workflows, queues, and cron jobs that survive restarts." --- ## Workflows diff --git a/docs/content/docs/index.mdx b/docs/content/docs/index.mdx index dccdb163f..3fee16065 100644 --- a/docs/content/docs/index.mdx +++ b/docs/content/docs/index.mdx @@ -1,6 +1,7 @@ --- title: "Dynamic Apps" -description: "Deploy user-generated applications in isolated VMs." +seoTitle: "Dynamic Apps Documentation" +description: "Deploy user-generated applications in isolated environments with durable state, workflows, realtime coordination, queues, and scheduled jobs." skill: true --- diff --git a/docs/content/docs/quickstart.mdx b/docs/content/docs/quickstart.mdx index 4f1a76ccd..739514524 100644 --- a/docs/content/docs/quickstart.mdx +++ b/docs/content/docs/quickstart.mdx @@ -1,6 +1,6 @@ --- title: "Quickstart" -description: "Set up the server, deploy an AI-generated app, and visit it." +description: "Set up a Dynamic Apps server, deploy an AI-generated application, connect the router, and verify the app from your browser." skill: true --- diff --git a/docs/content/docs/realtime.mdx b/docs/content/docs/realtime.mdx index cba6ff350..130cdbcbb 100644 --- a/docs/content/docs/realtime.mdx +++ b/docs/content/docs/realtime.mdx @@ -1,6 +1,6 @@ --- title: "Realtime" -description: "Share realtime state between every user connected to an app." +description: "Share realtime application state across connected users with actor-backed multiplayer coordination and automatic client synchronization." --- ## Multiplayer diff --git a/docs/content/docs/reference.mdx b/docs/content/docs/reference.mdx index 209662851..75cd82ec8 100644 --- a/docs/content/docs/reference.mdx +++ b/docs/content/docs/reference.mdx @@ -1,6 +1,6 @@ --- title: "Reference" -description: "Building apps with AI, and what is planned next." +description: "Build and repair Dynamic Apps with AI-generated files, deployment diagnostics, and a practical roadmap for extending generated backends." --- ## Build Apps with AI @@ -14,6 +14,6 @@ them back to the agent and deploy its repaired files again. ## Planned Improvements - Automatically include agent skills based on the - [Rivet Cookbooks](https://rivet.dev/cookbook/) for better app generation. + [Actors Learn guides](https://rivet.dev/actors/learn/) for better app generation. - Billing API for tracking and charging for app usage. - Built-in error reporting for generated apps. diff --git a/docs/content/docs/routing.mdx b/docs/content/docs/routing.mdx index 15d7852e1..5e6d4cff4 100644 --- a/docs/content/docs/routing.mdx +++ b/docs/content/docs/routing.mdx @@ -1,6 +1,6 @@ --- title: "Route requests" -description: "Mount deployed apps on your Hono server with appsRouter." +description: "Mount deployed Dynamic Apps on a Hono server, route requests by application ID, and connect an explicit RivetKit client when needed." skill: true --- diff --git a/docs/content/docs/state-and-data.mdx b/docs/content/docs/state-and-data.mdx index b9886ea93..f6bc73cbd 100644 --- a/docs/content/docs/state-and-data.mdx +++ b/docs/content/docs/state-and-data.mdx @@ -1,6 +1,6 @@ --- title: "State & Data" -description: "Durable SQLite state and queued work inside an app." +description: "Give Dynamic Apps durable SQLite state, queues, workflows, multiplayer coordination, and scheduled jobs within each application." --- Agents can generate more than pages and REST APIs. These examples show apps