diff --git a/develop-docs/development/environment/index.mdx b/develop-docs/development/environment/index.mdx
index f3f4a36c22d3a..919eaeeac5fcf 100644
--- a/develop-docs/development/environment/index.mdx
+++ b/develop-docs/development/environment/index.mdx
@@ -83,7 +83,7 @@ After the server is running we can visit the dev server using `https` at port `:
### Ingestion Pipeline (Relay) aka Sending Events to your Dev Environment
-Relay and the ingest workers are not started by default. Follow the instructions below to start them so you can send events to your dev environment Sentry instance:
+Relay and the ingest workers are not started by default. Follow the instructions below to start them so you can send events to your dev environment Sentry instance:
- Set `SENTRY_USE_RELAY = True` in `~/.sentry/sentry.conf.py`. This will tell `sentry devservices up` to also start services that Relay needs.
- Run `sentry devservices up` to start the services Relay needs. (like for example Kafka)
diff --git a/develop-docs/services/relay/index.mdx b/develop-docs/relay/index.mdx
similarity index 75%
rename from develop-docs/services/relay/index.mdx
rename to develop-docs/relay/index.mdx
index 16e68a3caf1a4..fddf4b8eaaf05 100644
--- a/develop-docs/services/relay/index.mdx
+++ b/develop-docs/relay/index.mdx
@@ -1,15 +1,12 @@
---
-title: Relay
+title: Relay Development
+sidebar_order: 60
---
Relay is a service for event filtering, rate-limiting and processing. It can act as:
* the store endpoint for your Sentry installation. See [Relay developer
documentation](https://getsentry.github.io/relay/relay/).
-
* an additional middle layer between your application and Sentry. See [Relay product
documentation](https://docs.sentry.io/product/relay/).
-## Contents
-
-* [Naming and versioning patterns in project config](/services/relay/projectconfig-versioning/)
diff --git a/develop-docs/services/relay/projectconfig-versioning.mdx b/develop-docs/relay/projectconfig-versioning.mdx
similarity index 100%
rename from develop-docs/services/relay/projectconfig-versioning.mdx
rename to develop-docs/relay/projectconfig-versioning.mdx
diff --git a/src/components/sidebar/developDocsSidebar.tsx b/src/components/sidebar/developDocsSidebar.tsx
index af006dbc580f2..9ec651fd13a77 100644
--- a/src/components/sidebar/developDocsSidebar.tsx
+++ b/src/components/sidebar/developDocsSidebar.tsx
@@ -15,6 +15,7 @@ const devDocsMenuItems: {root: string; title: string; hideChevron?: boolean}[] =
{root: 'frontend', title: 'Frontend'},
{root: 'backend', title: 'Backend'},
{root: 'sdk', title: 'SDK Development'},
+ {root: 'relay', title: 'Relay Development'},
{root: 'services', title: 'Services'},
{root: 'integrations', title: 'Integrations'},
{root: 'self-hosted', title: 'Self-Hosted Sentry'},