Skip to content

Commit f030876

Browse files
committed
docs upgrade
1 parent 6cd32ef commit f030876

File tree

6 files changed

+28
-116
lines changed

6 files changed

+28
-116
lines changed

augmentos_docs/docs/intro.md augmentos_docs/docs/index.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
---
2-
sidebar_position: 1
3-
slug: /intro
2+
id: index
3+
title: Welcome
4+
slug: /
45
---
56

67
import AugmentOSArchImage from '@site/src/components/ThemedImage';
78

8-
# Welcome to AugmentOS SDK
9+
# Welcome to AugmentOS SDK Beta
910

1011
*Last updated: March 31, 2025*
1112

1213
## What is AugmentOS?
1314

1415
AugmentOS is a cloud operating system for smart glasses that handles the hard parts: connections, Bluetooth, streaming, and more. This lets you focus on creating great smart glasses apps.
1516

16-
<div style={{textAlign: 'center', margin: '20px 0'}}>
17-
<AugmentOSArchImage width={500} />
18-
</div>
17+
<AugmentOSArchImage width={500} />
1918

2019
As a Cloud OS, you can write apps in JavaScript/TypeScript (with Python coming soon) and use our SDK to build for smart glasses. Our SDK enables you to access smart glasses I/O with low latency from a cloud application.
2120

@@ -38,4 +37,4 @@ Developers can deploy finished apps to the [AugmentOS Store](https://appstore.au
3837
- [GitHub Repo](https://github.com/AugmentOS-Community/AugmentOS)
3938
- [Discord Community](https://discord.gg/5ukNvkEAqT) - Get help from the team and community
4039

41-
Ready to build? Head to our [Quickstart guide](quickstart).
40+
Ready to dive deeper? Follow our [Quickstart guide](quickstart) to build your first app!

augmentos_docs/docusaurus.config.ts

+10-13
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,6 @@ const config: Config = {
6767
},
6868
// Only docs in the navbar
6969
items: [
70-
{
71-
type: 'docSidebar',
72-
sidebarId: 'tutorialSidebar',
73-
position: 'left',
74-
label: 'Docs',
75-
},
7670
{
7771
href: 'https://github.com/augmentos-community/augmentos',
7872
label: 'GitHub',
@@ -87,22 +81,25 @@ const config: Config = {
8781
title: 'Docs',
8882
items: [
8983
{
90-
// Points to the docs root now
91-
label: 'Tutorial',
84+
label: 'Home',
9285
to: '/',
9386
},
87+
{
88+
label: 'Quickstart',
89+
to: '/quickstart',
90+
},
91+
{
92+
label: 'Getting Started (From Scratch)',
93+
to: '/getting-started',
94+
},
9495
],
9596
},
9697
{
9798
title: 'Community',
9899
items: [
99-
{
100-
label: 'Stack Overflow',
101-
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
102-
},
103100
{
104101
label: 'Discord',
105-
href: 'https://discordapp.com/invite/docusaurus',
102+
href: 'https://discord.gg/5ukNvkEAqT',
106103
},
107104
{
108105
label: 'X',

augmentos_docs/sidebars.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
1515
const sidebars: SidebarsConfig = {
1616
// Manually defined sidebar structure
1717
tutorialSidebar: [
18-
'intro',
18+
'index',
1919
'quickstart',
2020
{
2121
type: 'doc',

augmentos_docs/src/components/ThemedImage.tsx

+11-9
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@ export default function AugmentOSArchImage({
1010
const darkImage = useBaseUrl('/img/augmentos-arch-dark.png');
1111

1212
return (
13-
<ThemedImage
14-
alt="AugmentOS Architecture"
15-
sources={{
16-
light: lightImage,
17-
dark: darkImage,
18-
}}
19-
style={{ width: width }}
20-
className={className}
21-
/>
13+
<div style={{ textAlign: 'center', margin: '20px 0' }}>
14+
<ThemedImage
15+
alt="AugmentOS Architecture"
16+
sources={{
17+
light: lightImage,
18+
dark: darkImage,
19+
}}
20+
style={{ maxWidth: `${width}px` }}
21+
className={className}
22+
/>
23+
</div>
2224
);
2325
}

augmentos_docs/src/pages/index.tsx

-79
This file was deleted.

augmentos_docs/src/pages/markdown-page.md

-7
This file was deleted.

0 commit comments

Comments
 (0)