Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Docs: Add structure for each team #3

Merged
merged 1 commit into from
Apr 15, 2024
Merged
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
12 changes: 12 additions & 0 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@ export default defineConfig({
{
label: 'Basics',
autogenerate: { directory: 'basics' },
},
{
label: 'Frontend',
autogenerate: { directory: 'frontend' },
},
{
label: 'Web Backend',
autogenerate: { directory: 'web_backend' },
},
{
label: 'Node',
autogenerate: { directory: 'node' },
}
],
}),
Expand Down
8 changes: 8 additions & 0 deletions docs/src/content/docs/frontend/example.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Example Page
description: A guide in my new Starlight docs site.
---

This is an example page. I don't really have much to say, but I'm here to show you how to create a new page. 👍

If you have never worked with Markdown before, you can check out this [Github Markdown Guide](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)
8 changes: 8 additions & 0 deletions docs/src/content/docs/node/example.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Example Page
description: A guide in my new Starlight docs site.
---

This is an example page. I don't really have much to say, but I'm here to show you how to create a new page. 👍

If you have never worked with Markdown before, you can check out this [Github Markdown Guide](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)
8 changes: 8 additions & 0 deletions docs/src/content/docs/web_backend/example.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Example Page
description: A guide in my new Starlight docs site.
---

This is an example page. I don't really have much to say, but I'm here to show you how to create a new page. 👍

If you have never worked with Markdown before, you can check out this [Github Markdown Guide](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)