diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index c13b6ee..c3a6f60 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -39,7 +39,7 @@ const sidebars = (): DefaultTheme.SidebarItem[] => [ { text: "Provider Components", link: "/getting-started/spa/providers" }, { text: "Root Component", link: "/getting-started/spa/root" }, { text: "Parameters", link: "/getting-started/spa/parameters" }, - { text: "Runtime Configuration", link: "/getting-started/server/environment" }, + { text: "Runtime Configuration", link: "/getting-started/spa/environment" }, { text: "Pilet Service", link: "/getting-started/spa/pilet-service" }, { text: "Localization", link: "/getting-started/spa/localization" }, { text: "HTTP Injector", link: "/getting-started/spa/http" }, @@ -59,7 +59,9 @@ const sidebars = (): DefaultTheme.SidebarItem[] => [ text: "Examples", collapsed: true, items: [ - { text: "Introduction", link: "/examples/" }, + { text: "Overview", link: "/examples/" }, + { text: "Server: Tractor Shop", link: "/examples/server/tractor-shop" }, + { text: "SPA: Tractor Shop", link: "/examples/spa/tractor-shop" }, ], }, ]; diff --git a/docs/examples/index.md b/docs/examples/index.md index df635b4..0751630 100644 --- a/docs/examples/index.md +++ b/docs/examples/index.md @@ -1 +1,11 @@ # Examples + +Here are some example code bases that will help you understand what `Piral.Blazor` is all about. + +## Server + +- [Tractor Shop](./server/tractor-shop.md) + +## SPA + +- [Tractor Shop](./spa/tractor-shop.md) diff --git a/docs/examples/server/tractor-shop.md b/docs/examples/server/tractor-shop.md new file mode 100644 index 0000000..9266ba4 --- /dev/null +++ b/docs/examples/server/tractor-shop.md @@ -0,0 +1,3 @@ +# Server: Tractor Shop + +More infos soon. diff --git a/docs/examples/spa/tractor-shop.md b/docs/examples/spa/tractor-shop.md new file mode 100644 index 0000000..a91f2d0 --- /dev/null +++ b/docs/examples/spa/tractor-shop.md @@ -0,0 +1,3 @@ +# SPA: Tractor Shop + +More infos soon.