diff --git a/firebase.json b/firebase.json
index ab24115b7b..3ac3f62665 100644
--- a/firebase.json
+++ b/firebase.json
@@ -39,7 +39,7 @@
{ "source": "/animations", "destination": "/ui/animations", "type": 301 },
{ "source": "/animations/:rest*", "destination": "/ui/animations/:rest*", "type": 301 },
{ "source": "/assets-and-images", "destination": "/ui/assets/assets-and-images", "type": 301 },
- { "source": "/bootstrap-into-dart", "destination": "/resources/bootstrap-into-dart", "type": 301 },
+ { "source": "/bootstrap-into-dart", "destination": "https://dart.dev/learn", "type": 301 },
{ "source": "/bug-reports", "destination": "/resources/bug-reports", "type": 301 },
{ "source": "/cd", "destination": "/deployment/cd", "type": 301 },
{ "source": "/code-of-conduct", "destination": "https://github.com/flutter/flutter/blob/main/CODE_OF_CONDUCT.md", "type": 301 },
@@ -196,6 +196,7 @@
{ "source": "/release/upgrade", "destination": "/install/upgrade", "type": 301 },
{ "source": "/resources/ai-overview", "destination": "/ai/create-with-ai", "type": 301 },
{ "source": "/resources/books", "destination": "https://docs.flutter.dev/reference/learning-resources", "type": 301 },
+ { "source": "/resources/bootstrap-into-dart", "destination": "https://dart.dev/learn", "type": 301 },
{ "source": "/resources/compatibility", "destination": "/release/compatibility-policy", "type": 301 },
{ "source": "/resources/dart-swift-concurrency", "destination": "/flutter-for/dart-swift-concurrency", "type": 301 },
{ "source": "/resources/platform-adaptations", "destination": "/platform-integration/platform-adaptations", "type": 301 },
diff --git a/src/content/platform-integration/android/setup.md b/src/content/platform-integration/android/setup.md
index 98aaf4fc7f..5b4c0422ec 100644
--- a/src/content/platform-integration/android/setup.md
+++ b/src/content/platform-integration/android/setup.md
@@ -364,9 +364,6 @@ or begin improving integration with Android.
Check out samples
-
- Learn about Dart
-
diff --git a/src/content/platform-integration/ios/setup.md b/src/content/platform-integration/ios/setup.md
index 98284208dc..89a674ec68 100644
--- a/src/content/platform-integration/ios/setup.md
+++ b/src/content/platform-integration/ios/setup.md
@@ -258,9 +258,6 @@ or begin improving integration with iOS.
Check out samples
-
- Learn about Dart
-
diff --git a/src/content/platform-integration/linux/setup.md b/src/content/platform-integration/linux/setup.md
index 2089ca8b4d..045aa44123 100644
--- a/src/content/platform-integration/linux/setup.md
+++ b/src/content/platform-integration/linux/setup.md
@@ -112,9 +112,6 @@ or begin expanding integration with Linux.
Check out samples
-
- Learn about Dart
-
diff --git a/src/content/platform-integration/macos/setup.md b/src/content/platform-integration/macos/setup.md
index 84dae9785b..5dd88d5ff8 100644
--- a/src/content/platform-integration/macos/setup.md
+++ b/src/content/platform-integration/macos/setup.md
@@ -156,9 +156,6 @@ or begin expanding integration with macOS.
Check out samples
-
- Learn about Dart
-
diff --git a/src/content/platform-integration/web/setup.md b/src/content/platform-integration/web/setup.md
index 5a649242ba..f1a645897f 100644
--- a/src/content/platform-integration/web/setup.md
+++ b/src/content/platform-integration/web/setup.md
@@ -89,9 +89,6 @@ or begin expanding integration with the web.
Check out samples
-
- Learn about Dart
-
diff --git a/src/content/platform-integration/windows/setup.md b/src/content/platform-integration/windows/setup.md
index 7c4e94b2bb..a4e27aee3a 100644
--- a/src/content/platform-integration/windows/setup.md
+++ b/src/content/platform-integration/windows/setup.md
@@ -132,9 +132,6 @@ or begin expanding integration with Windows.
Check out samples
-
- Learn about Dart
-
diff --git a/src/content/resources/bootstrap-into-dart.md b/src/content/resources/bootstrap-into-dart.md
deleted file mode 100644
index b2cce3539c..0000000000
--- a/src/content/resources/bootstrap-into-dart.md
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: Bootstrap into Dart
-description: How to get started with the Dart programming language.
-showBreadcrumbs: false
----
-
-New to the [Dart][] language?
-We compiled our favorite resources to
-help you quickly learn Dart.
-Many people have reported that
-[Dart is easy and fun to learn][].
-We hope these resources make Dart easy for
-you to learn, too.
-
-[Language tour][]
-: Your best introduction to the Dart language.
- Learn about Dart's features such as _strong types_,
- _closures_, _libraries_, _lexical scoping_,
- _top-level functions_, _named parameters_,
- _async / await_, and lots more.
-
-[Library tour][]
-: A good overview of Dart's powerful core libraries.
- Learn about Dart's support for collections, async,
- math, numbers, strings, JSON, and more.
-
-[Learning Dart as a JavaScript developer][]
-: Use your JavaScript knowledge to get up and running quickly with Dart.
- Learn about the key similarities and differences between the languages
- as well as concepts and conventions not present in vanilla JavaScript.
-
-[Effective Dart][]
-: Guides for style, authoring documentation, usage,
- and more.
-
-[Asynchronous programming: futures, async, await][] codelab
-: Learn how to write asynchronous code using
- futures and the `async` and `await` keywords.
-
-[Asynchronous programming: streams][]
-: Learn how to use streams to perform asynchronous
- I/O and event handling.
-
-Want to learn more and perhaps contribute?
-Check out the [Dart community][].
-
-
-
-[Asynchronous programming: futures, async, await]: {{site.dart-site}}/codelabs/async-await
-[Asynchronous programming: streams]: {{site.dart-site}}/tutorials/language/streams
-[Dart]: {{site.dart-site}}
-[Dart community]: {{site.dart-site}}/community
-[Dart is easy and fun to learn]: /resources/faq#why-did-flutter-choose-to-use-dart
-[Effective Dart]: {{site.dart-site}}/guides/language/effective-dart
-[`File`]: {{site.api}}/flutter/dart-io/File-class.html
-[Learning Dart as a JavaScript developer]: {{site.dart-site}}/guides/language/coming-from/js-to-dart
-[Language tour]: {{site.dart-site}}/language
-[Library tour]: {{site.dart-site}}/guides/libraries/library-tour
diff --git a/src/data/sidenav.yml b/src/data/sidenav.yml
index 836431d42e..b00b59e9a0 100644
--- a/src/data/sidenav.yml
+++ b/src/data/sidenav.yml
@@ -887,8 +887,6 @@
permalink: /resources/courses
- title: Glossary
permalink: /resources/glossary
- - title: Learn Dart
- permalink: /resources/bootstrap-into-dart
- title: Get support
permalink: /resources/support
- divider