Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Probe App to the sidebar. Update index sections. #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ export default defineConfig({
directory: "probe-engine",
},
},
{
label: "Probe App",
autogenerate: {
directory: "probe-multiplatform",
},
},
...openAPISidebarGroups,
],
customCss: ["./src/styles/custom.css"],
Expand Down
21 changes: 15 additions & 6 deletions src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,22 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
## Sections

<CardGrid stagger>
<Card title="Devops" icon="rocket">
<Card title="Devops" icon="rocket">
Learn about [devops at ooni](/devops)
</Card>
<Card title="Backend" icon="puzzle">
</Card>
<Card title="Backend" icon="laptop">
Learn about [backend components](/backend)
</Card>
<Card title="Meta" icon="puzzle">
</Card>
<Card title="Probe Engine" icon="puzzle">
Learn about [Probe Engine](/probe-engine)
</Card>
<Card title="Probe App" icon="star">
Learn about [Probe Multiplatform App](/probe-multiplatform)
</Card>
<Card title="APIs" icon="forward-slash">
Reference for the [Run API](/api-oonirun) and [Findings API](/api-oonifindings)
</Card>
<Card title="Meta" icon="document">
Learn about [writing about documentation process](/meta)
</Card>
</Card>
</CardGrid>