Skip to content

Commit

Permalink
fix(docs): navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Jan 15, 2024
1 parent 87aa791 commit 90d1f0f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
30 changes: 23 additions & 7 deletions www/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,18 +1,34 @@
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";

export default defineConfig({
integrations: [
starlight({
title: 'Simple Stack 🌱',
title: "Simple Stack 🌱",
social: {
github: 'https://github.com/bholmesdev/simple-stack',
discord: 'https://wtw.dev/chat',
github: "https://github.com/bholmesdev/simple-stack",
discord: "https://wtw.dev/chat",
},
sidebar: [
{
label: 'Packages',
autogenerate: { directory: 'packages' },
label: "πŸ§˜β€β™‚οΈ Form",
link: "/form",
},
{
label: "πŸ”Ž Scope",
link: "/scope",
},
{
label: "🌊 Stream",
link: "/stream",
},
{
label: "⏳ Partial",
link: "/partial",
badge: {
text: "WIP",
variant: "caution",
},
},
],
}),
Expand Down
8 changes: 4 additions & 4 deletions www/src/content/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ Simple stack is a suite of tools built for [Astro](https://astro.build) to simpl

Simple stack offers a growing collection of packages:

- **[πŸ§˜β€β™‚οΈ Simple form](/packages/form):** A full stack solution to validate forms with your client framework of choice.
- **[πŸ”Ž Simple scope](/packages/scope):** Get a scoped ID for any file you're in. Perfect for form label IDs and query selectors.
- **[🌊 Simple stream](/packages/stream):** Suspend Astro components with fallback content.
- **[⏳ WIP: Simple partial](/packages/partial):** Re-render just the parts that change in your Astro app.
- **[πŸ§˜β€β™‚οΈ Simple form](/form):** A full stack solution to validate forms with your client framework of choice.
- **[πŸ”Ž Simple scope](/scope):** Get a scoped ID for any file you're in. Perfect for form label IDs and query selectors.
- **[🌊 Simple stream](/stream):** Suspend Astro components with fallback content.
- **[⏳ WIP: Simple partial](/partial):** Re-render just the parts that change in your Astro app.

## Get involved

Expand Down

0 comments on commit 90d1f0f

Please sign in to comment.