diff --git a/copy-docs-assets.sh b/copy-docs-assets.sh
deleted file mode 100755
index e8fcfc391499f8461d47d58f4b096d33d37bf545..0000000000000000000000000000000000000000
--- a/copy-docs-assets.sh
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/sh
-
-controller_version() {
-sed -n "s/.*$1\/releases\/download\/\(.*\)\/.*/\1/p;n" "manifests/bases/$1/kustomization.yaml"
-}
-
-{
-# source-controller CRDs
-SOURCE_VER=$(controller_version source-controller)
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/source-controller/$SOURCE_VER/docs/api/source.md" > docs/components/source/api.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/source-controller/$SOURCE_VER/docs/spec/v1beta1/gitrepositories.md" > docs/components/source/gitrepositories.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/source-controller/$SOURCE_VER/docs/spec/v1beta1/helmrepositories.md" > docs/components/source/helmrepositories.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/source-controller/$SOURCE_VER/docs/spec/v1beta1/helmcharts.md" > docs/components/source/helmcharts.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/source-controller/$SOURCE_VER/docs/spec/v1beta1/buckets.md" > docs/components/source/buckets.md
-}
-
-{
-# kustomize-controller CRDs
-KUSTOMIZE_VER=$(controller_version kustomize-controller)
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/kustomize-controller/$KUSTOMIZE_VER/docs/api/kustomize.md" > docs/components/kustomize/api.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/kustomize-controller/$KUSTOMIZE_VER/docs/spec/v1beta1/kustomization.md" > docs/components/kustomize/kustomization.md
-}
-
-{
-# helm-controller CRDs
-HELM_VER=$(controller_version helm-controller)
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/helm-controller/$HELM_VER/docs/api/helmrelease.md" > docs/components/helm/api.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/helm-controller/$HELM_VER/docs/spec/v2beta1/helmreleases.md" > docs/components/helm/helmreleases.md
-}
-
-{
-# notification-controller CRDs
-NOTIFICATION_VER=$(controller_version notification-controller)
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/notification-controller/$NOTIFICATION_VER/docs/api/notification.md" > docs/components/notification/api.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/notification-controller/$NOTIFICATION_VER/docs/spec/v1beta1/event.md" > docs/components/notification/event.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/notification-controller/$NOTIFICATION_VER/docs/spec/v1beta1/alert.md" > docs/components/notification/alert.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/notification-controller/$NOTIFICATION_VER/docs/spec/v1beta1/provider.md" > docs/components/notification/provider.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/notification-controller/$NOTIFICATION_VER/docs/spec/v1beta1/receiver.md" > docs/components/notification/receiver.md
-}
-
-{
-# image-*-controller CRDs; these use the same API group
-IMG_REFL_VER=$(controller_version image-reflector-controller)
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/image-reflector-controller/$IMG_REFL_VER/docs/api/image-reflector.md" > docs/components/image/reflector-api.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/image-reflector-controller/$IMG_REFL_VER/docs/spec/v1alpha2/imagerepositories.md" > docs/components/image/imagerepositories.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/image-reflector-controller/$IMG_REFL_VER/docs/spec/v1alpha2/imagepolicies.md" > docs/components/image/imagepolicies.md
-
-IMG_AUTO_VER=$(controller_version image-automation-controller)
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/image-automation-controller/$IMG_AUTO_VER/docs/api/image-automation.md" > docs/components/image/automation-api.md
-curl -# -Lf "https://raw.githubusercontent.com/fluxcd/image-automation-controller/$IMG_AUTO_VER/docs/spec/v1alpha2/imageupdateautomations.md" > docs/components/image/imageupdateautomations.md
-}
-
-{
-# install script
-cp install/flux.sh docs/install.sh
-}
diff --git a/docs/README.md b/docs/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..5b1ab70e44285eaa610d0e03d08e44b891f1e9f3
--- /dev/null
+++ b/docs/README.md
@@ -0,0 +1,17 @@
+# Flux v2 Documentation
+
+The documentation for `flux2` has moved to this repository: <https://github.com/fluxcd/website>.
+
+[The Website's README](https://github.com/fluxcd/website/#readme) has information on how to
+
+- modify and extend documentation
+- run the site <https://fluxcd.io> locally
+- publish changes
+
+and where all the individual pieces of content come from.
+
+It will be easier for us to maintain a coherent web presences (and merge all of Flux documentation) in one central repository. This was partly discussed in <https://github.com/fluxcd/flux2/discussions/367>.
+
+## toolkit.fluxcd.io
+
+For historical reasons we are keeping a `_redirects` file in this directory. It defines how redirects from the old site `toolkit.fluxcd.io` to our new website <https://fluxcd.io> work. Changes to this file need to be merged and a manual build triggered in the Netlify App.
diff --git a/_redirects b/docs/_redirects
similarity index 91%
rename from _redirects
rename to docs/_redirects
index 833b0fc8789017308115b419c278f167980aa7fa..4b23c4088d2ee654e6ae63eeae8604fae30acdce 100644
--- a/_redirects
+++ b/docs/_redirects
@@ -1,6 +1,7 @@
 # individual rules
 /core-concepts          https://fluxcd.io/docs/concepts                     301!
 /contributing           https://fluxcd.io/contributing                      301!
+/install.sh             https://fluxcd.io/install.sh                        301!
 
 # refer to https://github.com/fluxcd/flux2/discussions/367
 /dev-guides/*           https://fluxcd.io/docs/gitops-toolkit/:splat        301!
diff --git a/netlify.toml b/netlify.toml
index 9aa13a330ffdc6b63ebee1d69575b4f0e7016be9..3a9c12c68f0dfaf3b56dc35ed2143a13398fe829 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -1,3 +1,3 @@
 [build]
-  command = "./copy-docs-assets.sh && mkdocs build && cp _redirects site/"
+  command = "mkdir -p site && cp docs/_redirects site/"
   publish = "site"
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index 483fb31876bb7954eaa3822517e3d4fe09f3933e..0000000000000000000000000000000000000000
--- a/requirements.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-mkdocs==1.1.2
-mkdocs-material==7.1.3
diff --git a/runtime.txt b/runtime.txt
deleted file mode 100644
index 475ba515c04b5b7cf67a1517430691febc39a32e..0000000000000000000000000000000000000000
--- a/runtime.txt
+++ /dev/null
@@ -1 +0,0 @@
-3.7