Skip to content

Commit f911f0b

Browse files
committed
update docs
1 parent 1d43083 commit f911f0b

File tree

11 files changed

+2613
-3567
lines changed

11 files changed

+2613
-3567
lines changed

docs/astro.config.mjs

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import { defineConfig } from 'astro/config';
22
import starlight from '@astrojs/starlight';
3+
import starlightThemeFlexoki from 'starlight-theme-flexoki'
34

45
// https://astro.build/config
56
export default defineConfig({
67
integrations: [
78
starlight({
89
title: 'Open Compute Framework',
9-
social: {
10-
github: 'https://github.com/autoai-org/opencomputeframework',
11-
discord: 'https://discord.gg/PgGb4z4Jve',
12-
},
10+
plugins: [starlightThemeFlexoki()],
11+
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/researchcomputer/OpenComputeFramework' }],
1312
sidebar: [
1413
{
1514
label: 'Guides',
@@ -18,7 +17,16 @@ export default defineConfig({
1817
{ label: 'ML Inference', link: '/guides/ml_inference/' },
1918
{ label: 'Deployment', link: '/guides/spinup/' },
2019
],
21-
}
20+
},
21+
{
22+
label: 'Reference',
23+
items: [
24+
{ label: 'Architecture', link: '/reference/architecture/' },
25+
{ label: 'CLI', link: '/reference/cli/' },
26+
{ label: 'API', link: '/reference/api/' },
27+
{ label: 'Configuration', link: '/reference/configuration/' },
28+
],
29+
}
2230

2331
],
2432
}),

0 commit comments

Comments
 (0)