|
1 | 1 | --- |
2 | | -title: Simple stack 🌱 |
3 | | -description: A suite of tools built for Astro to simplify your workflow. |
| 2 | +title: Simple Stack |
| 3 | +description: Simple Stack is a collection of lightweight tools for Astro and Vite — including a reactive store, scoped IDs, and DOM query helpers — built to simplify web development. |
4 | 4 | tableOfContents: false |
5 | 5 | head: |
6 | 6 | - tag: title |
7 | | - content: Simple stack 🌱 |
| 7 | + content: "Simple Stack — Reactive Store, Scoped IDs & DOM Queries for Astro" |
| 8 | + - tag: meta |
| 9 | + attrs: |
| 10 | + property: "og:title" |
| 11 | + content: "Simple Stack — Reactive Store, Scoped IDs & DOM Queries for Astro" |
| 12 | + - tag: meta |
| 13 | + attrs: |
| 14 | + property: "og:description" |
| 15 | + content: "Simple Stack is a collection of lightweight tools for Astro and Vite — including a reactive store, scoped IDs, and DOM query helpers." |
| 16 | + - tag: meta |
| 17 | + attrs: |
| 18 | + property: "og:type" |
| 19 | + content: "website" |
| 20 | + - tag: script |
| 21 | + attrs: |
| 22 | + type: "application/ld+json" |
| 23 | + content: | |
| 24 | + { |
| 25 | + "@context": "https://schema.org", |
| 26 | + "@type": "WebSite", |
| 27 | + "name": "Simple Stack", |
| 28 | + "url": "https://simple-stack.dev", |
| 29 | + "description": "A collection of lightweight tools for Astro and Vite to simplify web development." |
| 30 | + } |
| 31 | + - tag: script |
| 32 | + attrs: |
| 33 | + type: "application/ld+json" |
| 34 | + content: | |
| 35 | + { |
| 36 | + "@context": "https://schema.org", |
| 37 | + "@type": "FAQPage", |
| 38 | + "mainEntity": [ |
| 39 | + { |
| 40 | + "@type": "Question", |
| 41 | + "name": "What is Simple Store?", |
| 42 | + "acceptedAnswer": { |
| 43 | + "@type": "Answer", |
| 44 | + "text": "Simple Store is a reactive state management library that combines the simplicity of signals with the power of selectors found in Zustand or Redux. It supports nested sub-stores, React hooks, middleware, and Next.js SSR." |
| 45 | + } |
| 46 | + }, |
| 47 | + { |
| 48 | + "@type": "Question", |
| 49 | + "name": "What is Simple Scope?", |
| 50 | + "acceptedAnswer": { |
| 51 | + "@type": "Answer", |
| 52 | + "text": "Simple Scope is a Vite plugin that generates scoped IDs for any file you are in, resolved at build time with zero client JavaScript. It is compatible with Astro, Nuxt, SvelteKit, and any Vite-based framework." |
| 53 | + } |
| 54 | + }, |
| 55 | + { |
| 56 | + "@type": "Question", |
| 57 | + "name": "What is Simple Query?", |
| 58 | + "acceptedAnswer": { |
| 59 | + "@type": "Answer", |
| 60 | + "text": "Simple Query is an Astro integration that provides a simple way to query the DOM from Astro components using scoped data-target attributes and a lightweight ready() API with optional signal-based state management." |
| 61 | + } |
| 62 | + } |
| 63 | + ] |
| 64 | + } |
8 | 65 | --- |
9 | 66 |
|
10 | 67 | A collection of tools I've built to **make web development simpler.** |
|
0 commit comments