diff --git a/docs/source/get-started.mdx b/docs/source/get-started.mdx
index 4aede408c..2613af50e 100644
--- a/docs/source/get-started.mdx
+++ b/docs/source/get-started.mdx
@@ -8,12 +8,6 @@ import SPMPackageInstallationPanel from "../shared/spm-package-installation-pane
import PodsInstallationPanel from "../shared/pods-installation-panel.mdx"
import SetupCodegen from "../shared/setup-codegen/combined.mdx"
-
-
Follow the steps below to add Apollo iOS to your app:
## 1. Install the Apollo frameworks
diff --git a/docs/source/index.mdx b/docs/source/index.mdx
index bc6ede48c..4a8b80667 100644
--- a/docs/source/index.mdx
+++ b/docs/source/index.mdx
@@ -3,12 +3,6 @@ title: Introduction to Apollo iOS
description: A strongly typed, Swift-first GraphQL client
---
-
-
**Apollo iOS** is an [open-source](https://github.com/apollographql/apollo-ios) GraphQL client for native client applications, written in Swift.
Apollo iOS executes queries and mutations using a GraphQL server and returns results as pre-generated and operation-specific Swift types. This means that Apollo iOS takes care of forming spec-compliant GraphQL requests, parsing JSON responses, and manually validating and type-casting response data for you!
diff --git a/netlify.toml b/netlify.toml
deleted file mode 100644
index 93c1071b7..000000000
--- a/netlify.toml
+++ /dev/null
@@ -1,19 +0,0 @@
-[build]
- ignore = "exit 0"
-
-[build.environment]
- NODE_VERSION = "16"
-
-[context.deploy-preview.build]
- base = "docs"
- ignore = "git diff --quiet HEAD^ HEAD ."
- command = """\
- cd ../
- rm -rf monodocs
- git clone https://github.com/apollographql/docs --branch main --single-branch monodocs
- cd monodocs
- npm i
- cp -r ../docs local
- DOCS_LOCAL=true npm run build \
- """
- publish = "../monodocs/public"