Skip to content

Commit eb9081a

Browse files
tanushree-sharmapatriciasantaana
authored andcommitted
nav bar order (#17136)
1 parent b38c072 commit eb9081a

File tree

16 files changed

+56
-59
lines changed

16 files changed

+56
-59
lines changed

src/content/docs/workers/ai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ title: AI Assistant
33
sidebar:
44
order: 99
55
external_link: /workers/ai/
6-
---
6+
---

src/content/docs/workers/ci-cd/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pcx_content_type: concept
33
title: CI/CD
44
description: Set up continuous integration and continuous deployment for your Workers.
55
sidebar:
6-
order: 7
6+
order: 8
77
---
88

99
You can set up continuous integration and continuous deployment (CI/CD) for your Workers by using either the native build system, [Workers Builds](#workers-builds), or using [external providers](#external-cicd) to optimize your development workflow.

src/content/docs/workers/configuration/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: navigation
33
title: Configuration
44
sidebar:
5-
order: 6
5+
order: 7
66
group:
77
hideIndex: true
88
---

src/content/docs/workers/databases/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: navigation
33
title: Databases
44
sidebar:
5-
order: 8
5+
order: 12
66
group:
77
hideIndex: true
88
---

src/content/docs/workers/frameworks/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: navigation
33
title: Frameworks
44
sidebar:
5-
order: 7
5+
order: 11
66
group:
77
badge: Beta
88
head: []

src/content/docs/workers/glossary.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
title: Glossary
33
pcx_content_type: glossary
44
sidebar:
5-
order: 13
6-
5+
order: 19
76
---
87

9-
import { Glossary } from "~/components"
8+
import { Glossary } from "~/components";
109

1110
Review the definitions for terms used across Cloudflare's Workers documentation.
1211

src/content/docs/workers/languages/index.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
pcx_content_type: navigation
33
title: Languages
44
sidebar:
5-
order: 11
5+
order: 16
66
head: []
77
description: Languages supported on Workers, a polyglot platform.
8-
98
---
109

11-
import { DirectoryListing } from "~/components"
10+
import { DirectoryListing } from "~/components";
1211

1312
Workers is a polyglot platform, and provides first-class support for the following programming languages:
1413

src/content/docs/workers/observability/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pcx_content_type: navigation
33
title: Observability
44
sidebar:
5-
order: 10
5+
order: 14
66
group:
77
hideIndex: true
88
---

src/content/docs/workers/platform/index.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
pcx_content_type: navigation
33
title: Platform
44
sidebar:
5-
order: 11
6-
5+
order: 17
76
---
87

9-
import { DirectoryListing } from "~/components"
8+
import { DirectoryListing } from "~/components";
109

1110
Pricing, limits and other information about the Workers platform.
1211

src/content/docs/workers/playground.mdx

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
pcx_content_type: concept
33
title: Playground
44
sidebar:
5-
order: 5
6-
5+
order: 6
76
---
87

9-
import { LinkButton } from "~/components"
8+
import { LinkButton } from "~/components";
109

1110
:::note[Browser support]
1211

@@ -18,7 +17,9 @@ The quickest way to experiment with Cloudflare Workers is in the [Playground](ht
1817

1918
The Playground uses the same editor as the authenticated experience. The Playground provides the ability to [share](#share) the code you write as well as [deploy](#deploy) it instantly to Cloudflare's global network. This way, you can try new things out and deploy them when you are ready.
2019

21-
<LinkButton href="https://workers.cloudflare.com/playground" icon="external">Launch the Playground</LinkButton>
20+
<LinkButton href="https://workers.cloudflare.com/playground" icon="external">
21+
Launch the Playground
22+
</LinkButton>
2223

2324
## Hello Cloudflare Workers
2425

@@ -32,21 +33,21 @@ import welcome from "welcome.html";
3233
*/
3334

3435
export default {
35-
/**
36-
* @param {Request} request
37-
* @param {Env} env
38-
* @param {ExecutionContext} ctx
39-
* @returns {Response}
40-
*/
41-
fetch(request, env, ctx) {
42-
console.log("Hello Cloudflare Workers!");
43-
44-
return new Response(welcome, {
45-
headers: {
46-
"content-type": "text/html",
47-
},
48-
});
49-
},
36+
/**
37+
* @param {Request} request
38+
* @param {Env} env
39+
* @param {ExecutionContext} ctx
40+
* @returns {Response}
41+
*/
42+
fetch(request, env, ctx) {
43+
console.log("Hello Cloudflare Workers!");
44+
45+
return new Response(welcome, {
46+
headers: {
47+
"content-type": "text/html",
48+
},
49+
});
50+
},
5051
};
5152
```
5253

0 commit comments

Comments
 (0)