diff --git a/src/content/docs/pages/platform/limits.mdx b/src/content/docs/pages/platform/limits.mdx
index a9d36478368..83df7ffefb1 100644
--- a/src/content/docs/pages/platform/limits.mdx
+++ b/src/content/docs/pages/platform/limits.mdx
@@ -77,7 +77,9 @@ Your Pages site can be managed by an unlimited number of users via the Cloudflar
## Projects
-Cloudflare Pages has a limit of 100 projects per account. This limit is not routinely increased.
+Cloudflare Pages has a limit of 100 projects[^2] per account. This limit is not routinely increased.
+
+[^2]: If you need a higher project limit, use [Workers for Platforms](/cloudflare-for-platforms/workers-for-platforms/).
If you need to host more than 100 sites, use one of these products designed for scale:
diff --git a/src/content/docs/workers/platform/limits.mdx b/src/content/docs/workers/platform/limits.mdx
index 6ac47be1255..7a7a1804cea 100644
--- a/src/content/docs/workers/platform/limits.mdx
+++ b/src/content/docs/workers/platform/limits.mdx
@@ -29,13 +29,12 @@ import {
| [Environment variable
size](#environment-variables) | 5 KB | 5 KB |
| [Worker size](#worker-size) | 3 MB | 10 MB |
| [Worker startup time](#worker-startup-time) | 1 second | 1 second |
-| [Number of Workers](#number-of-workers)1 | 100 | 500 |
+| [Number of Workers](#number-of-workers) | 100 | 500[^1] |
| Number of [Cron Triggers](/workers/configuration/cron-triggers/)
per account | 5 | 250 |
| Number of [Static Asset](#static-assets) files per Worker version | 20,000 | 100,000 |
| Individual [Static Asset](#static-assets) file size | 25 MiB | 25 MiB |
-1 If you reach this limit, consider using [Workers for
-Platforms](/cloudflare-for-platforms/workers-for-platforms/).
+[^1]: If you need a higher Worker limit, use [Workers for Platforms](/cloudflare-for-platforms/workers-for-platforms/).
@@ -304,9 +303,7 @@ To reduce startup time, avoid expensive work in global scope. Move initializatio
| Limit | Workers Free | Workers Paid |
| ------------------- | ------------ | ------------ |
-| Workers per account | 100 | 500 |
-
-If you need more than 500 Workers, consider using [Workers for Platforms](/cloudflare-for-platforms/workers-for-platforms/).
+| Workers per account | 100 | 500[^1] |
---