Skip to content
Open
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
27 changes: 26 additions & 1 deletion www/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import starlight from "@astrojs/starlight";
import { defineConfig } from "astro/config";

export default defineConfig({
site: "https://simple-stack.dev",
integrations: [
starlight({
title: "Simple Stack 🌱",
title: "Simple Stack",
social: [
{
icon: "github",
Expand All @@ -13,6 +14,30 @@ export default defineConfig({
},
{ icon: "discord", label: "Discord", href: "https://wtw.dev/chat" },
],
head: [
{
tag: "meta",
attrs: { property: "og:type", content: "website" },
},
{
tag: "meta",
attrs: { property: "og:site_name", content: "Simple Stack" },
},
{
tag: "script",
attrs: { type: "application/ld+json" },
content: JSON.stringify({
"@context": "https://schema.org",
"@type": "Organization",
name: "Simple Stack",
url: "https://simple-stack.dev",
logo: "https://simple-stack.dev/favicon.svg",
sameAs: [
"https://github.com/bholmesdev/simple-stack",
],
}),
},
],
sidebar: [
{
label: "💾 Store",
Expand Down
4 changes: 4 additions & 0 deletions www/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
User-agent: *
Allow: /

Sitemap: https://simple-stack.dev/sitemap-index.xml
8 changes: 6 additions & 2 deletions www/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
---
title: Simple stack 🌱
title: Simple Stack — Lightweight Tools for Astro & Vite
description: A suite of tools built for Astro to simplify your workflow.
tableOfContents: false
head:
- tag: title
content: Simple stack 🌱
content: Simple Stack — Lightweight Tools for Astro & Vite
- tag: script
attrs:
type: application/ld+json
content: '{"@context":"https://schema.org","@type":"WebSite","name":"Simple Stack","url":"https://simple-stack.dev","description":"A suite of tools built for Astro to simplify your workflow."}'
---

A collection of tools I've built to **make web development simpler.**
Expand Down
2 changes: 1 addition & 1 deletion www/src/content/docs/query.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 💰 Simple Query
title: Simple Query
description: A simple library to query the DOM from your Astro components.
---

Expand Down
2 changes: 1 addition & 1 deletion www/src/content/docs/scope.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 🔎 Simple scope
title: Simple Scope
description: Get a scoped ID for whatever file you're in. Resolved at build-time with zero client JS.
---

Expand Down
2 changes: 1 addition & 1 deletion www/src/content/docs/store.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 💾 Simple store
title: Simple Store
description: A reactive store that combines the simplicity of signals with the power of "selectors" you'd find in Zustand or Redux.
sidebar:
label: Get started
Expand Down
2 changes: 1 addition & 1 deletion www/src/content/docs/stream.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Simple stream 🌊
title: Simple Stream
description: Suspend Astro components with fallback content. Like React Server Components, but Just HTML ™️
---

Expand Down
Loading