Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 2768ade

Browse files
committed
fixes.
1 parent 6431f35 commit 2768ade

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

src/nav.config.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
ClockIcon,
55
CloudIcon,
66
CommandLineIcon,
7+
CpuChipIcon,
78
GlobeAltIcon,
89
HomeIcon,
910
LockClosedIcon,
@@ -68,6 +69,11 @@ const buildingBlockLinks = [
6869
href: '/http',
6970
icon: ServerIcon,
7071
},
72+
{
73+
title: 'Jobs',
74+
href: '/jobs',
75+
icon: CpuChipIcon,
76+
},
7177
{
7278
title: 'Key Value Stores',
7379
href: '/keyvalue',
@@ -690,6 +696,20 @@ const fullNav: FullNav = {
690696
links: buildingBlockLinks.filter((link) => link.href !== '/http'),
691697
},
692698
],
699+
jobs: [
700+
{
701+
links: [
702+
{
703+
title: 'Overview',
704+
href: '/jobs',
705+
},
706+
],
707+
},
708+
{
709+
title: 'More Building Blocks',
710+
links: buildingBlockLinks.filter((link) => link.href !== '/jobs'),
711+
},
712+
],
693713
keyvalue: [
694714
{
695715
links: [

src/pages/jobs.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,5 @@ async def submit_job(ctx):
9393

9494
Nitric.run()
9595
```
96+
97+
</CodeGroup>

0 commit comments

Comments
 (0)