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

Commit

Permalink
Merge pull request #3 from smartuni/docs_structure
Browse files Browse the repository at this point in the history
Docs: Add structure for each team
  • Loading branch information
tommyx5 authored Apr 15, 2024
2 parents 567b1c2 + 7942da2 commit b96a542
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
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)

0 comments on commit b96a542

Please sign in to comment.