diff --git a/admin/tool/componentlibrary/content/bootstrap/_index.md b/admin/tool/componentlibrary/content/bootstrap/_index.md
deleted file mode 100644
index 1c263fc6d59..00000000000
--- a/admin/tool/componentlibrary/content/bootstrap/_index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "Bootstrap"
-date: 2017-10-17T15:26:15Z
-draft: false
-weight: 15
----
diff --git a/admin/tool/componentlibrary/content/bootstrap/components/_index.md b/admin/tool/componentlibrary/content/bootstrap/components/_index.md
deleted file mode 100644
index a2f8be4b475..00000000000
--- a/admin/tool/componentlibrary/content/bootstrap/components/_index.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "Components"
-date: 2021-05-05T15:15:15Z
-draft: true
-weight: 20
----
diff --git a/admin/tool/componentlibrary/content/bootstrap/components/alerts.md b/admin/tool/componentlibrary/content/bootstrap/components/alerts.md
deleted file mode 100644
index 8d6cb39839b..00000000000
--- a/admin/tool/componentlibrary/content/bootstrap/components/alerts.md
+++ /dev/null
@@ -1,122 +0,0 @@
----
-layout: docs
-title: Alerts
-description: Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.
-group: components
-aliases:
- - "/components/"
- - "/docs/4.6/components/"
-toc: true
----
-
-## Examples
-
-Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight **required** contextual classes (e.g., `.alert-success`). For inline dismissal, use the [alerts jQuery plugin](#dismissing).
-
-{{< example >}}
-{{< alerts.inline >}}
-{{- range (index $.Site.Data "theme-colors") }}
-
- A simple {{ .name }} alert—check it out!
-
{{- end -}}
-{{< /alerts.inline >}}
-{{< /example >}}
-
-{{< callout warning >}}
-{{< partial "callout-warning-color-assistive-technologies.md" >}}
-{{< /callout >}}
-
-### Link color
-
-Use the `.alert-link` utility class to quickly provide matching colored links within any alert.
-
-{{< example >}}
-{{< alerts.inline >}}
-{{- range (index $.Site.Data "theme-colors") }}
-
- A simple {{ .name }} alert with an example link. Give it a click if you like.
-
{{ end -}}
-{{< /alerts.inline >}}
-{{< /example >}}
-
-### Additional content
-
-Alerts can also contain additional HTML elements like headings, paragraphs and dividers.
-
-{{< example >}}
-
-
Well done!
-
Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.
-
-
Whenever you need to, be sure to use margin utilities to keep things nice and tidy.
-
-{{< /example >}}
-
-
-### Dismissing
-
-Using the alert JavaScript plugin, it's possible to dismiss any alert inline. Here's how:
-
-- Be sure you've loaded the alert plugin, or the compiled Bootstrap JavaScript.
-- If you're building our JavaScript from source, it [requires `util.js`]({{< docsref "/getting-started/javascript#util" >}}). The compiled version includes this.
-- Add a dismiss button and the `.alert-dismissible` class, which adds extra padding to the right of the alert and positions the `.close` button.
-- On the dismiss button, add the `data-dismiss="alert"` attribute, which triggers the JavaScript functionality. Be sure to use the `