From b98d733534a29a21b85ccb5669a94c93d0f16d71 Mon Sep 17 00:00:00 2001 From: gzuuus Date: Fri, 18 Jul 2025 00:25:45 +0200 Subject: [PATCH] fix: broken links --- src/content/docs/index.md | 2 +- src/content/docs/index.mdx | 2 +- src/content/docs/transports/base-nostr-transport.md | 2 +- src/content/docs/tutorials/client-server-communication.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/index.md b/src/content/docs/index.md index 2ace127..8c540a3 100644 --- a/src/content/docs/index.md +++ b/src/content/docs/index.md @@ -42,4 +42,4 @@ This documentation is structured to guide you from initial setup to advanced imp - **Proxy & Gateway**: Explains how to use the bridging components. - **Tutorials**: Provides practical, step-by-step examples. -Let's begin by setting up your environment in the [Quick Overview](../getting-started/quick-overview/). \ No newline at end of file +Let's begin by setting up your environment in the [Quick Overview](/getting-started/quick-overview/). \ No newline at end of file diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index 42e1dea..ed841f4 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -8,7 +8,7 @@ hero: file: ../../assets/contextvm-logo.svg actions: - text: Get Started - link: getting-started/quick-overview/ + link: /getting-started/quick-overview/ icon: right-arrow - text: View on GitHub link: https://github.com/contextvm/ts-sdk diff --git a/src/content/docs/transports/base-nostr-transport.md b/src/content/docs/transports/base-nostr-transport.md index 90064a3..6deac9b 100644 --- a/src/content/docs/transports/base-nostr-transport.md +++ b/src/content/docs/transports/base-nostr-transport.md @@ -5,7 +5,7 @@ description: An abstract class that provides the core functionality for all Nost # Base Nostr Transport -The `BaseNostrTransport` is an abstract class that provides the core functionality for all Nostr-based transports in the `@contextvm/sdk`. It serves as the foundation for the [`NostrClientTransport`](../nostr-client-transport) and [`NostrServerTransport`](/transport/nostr-server-transport), handling the common logic for connecting to relays, managing subscriptions, and converting messages between the MCP and Nostr formats. +The `BaseNostrTransport` is an abstract class that provides the core functionality for all Nostr-based transports in the `@contextvm/sdk`. It serves as the foundation for the [`NostrClientTransport`](/transports/nostr-client-transport) and [`NostrServerTransport`](/transports/nostr-server-transport), handling the common logic for connecting to relays, managing subscriptions, and converting messages between the MCP and Nostr formats. ## Core Responsibilities diff --git a/src/content/docs/tutorials/client-server-communication.md b/src/content/docs/tutorials/client-server-communication.md index 5c12fd7..fe236c1 100644 --- a/src/content/docs/tutorials/client-server-communication.md +++ b/src/content/docs/tutorials/client-server-communication.md @@ -16,7 +16,7 @@ We will build two separate scripts: ## Prerequisites -- You have completed the [Quick Overview](../getting-started/quick-overview/). +- You have completed the [Quick Overview](/getting-started/quick-overview/). - You have two Nostr private keys (one for the server, one for the client). You can generate new keys using various tools, or by running `nostr-tools` commands. ---