Skip to content

Commit 99929c4

Browse files
authored
release v3.2.3 (#1082)
* remove sections and add redirects; (#1081) * fix linting * add additional redirect for old stacks.js
1 parent e5d50de commit 99929c4

File tree

144 files changed

+135
-32153
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+135
-32153
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Documentation for Hiro Systems PBC. Built with [Fumadocs](https://fumadocs.verce
1111
Example structure:
1212

1313
```
14-
/tools/clarinet/
14+
/tools/example-tool/
1515
├── Overview/ # Introduction and setup
16-
├── Clarinet CLI/ # Command-line features
17-
├── Clarinet JS SDK/ # Testing and programmatic usage
16+
├── CLI/ # Command-line features
17+
├── SDK/ # Testing and programmatic usage
1818
└── Integrations/ # External connections
1919
```
2020

app/[locale]/(home)/_pages/page.en.tsx

Lines changed: 10 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
import { ImageZoom } from 'fumadocs-ui/components/image-zoom';
22
import { Braces, Database, Play } from 'lucide-react';
33
import { Card, Cards, SmallCard } from '@/components/card';
4-
import {
5-
API,
6-
Chainhook,
7-
Clarinet,
8-
Clarity,
9-
Hiro,
10-
Js,
11-
Ordinals,
12-
Runes,
13-
StacksIcon,
14-
} from '@/components/ui/icon';
4+
import { API, Chainhook, Hiro, Ordinals, Runes, StacksIcon } from '@/components/ui/icon';
155
import heroImage from '@/public/stacks-hero.svg';
166

177
export default function HomePage() {
@@ -65,12 +55,6 @@ export default function HomePage() {
6555
</h4>
6656
<hr className="border-t border-border my-2" />
6757
<Cards>
68-
<SmallCard
69-
icon={<Clarinet />}
70-
href="/tools/clarinet"
71-
title="Clarinet"
72-
description="A comprehensive development environment for building and testing Clarity smart contracts."
73-
/>
7458
<SmallCard
7559
icon={<Chainhook />}
7660
href="/tools/chainhook"
@@ -140,44 +124,22 @@ export default function HomePage() {
140124
<div className="flex flex-col">
141125
<h4 id="explore-by-category" className="text-muted-foreground scroll-m-20">
142126
<a href="#explore-by-category" className="not-prose group text-sm uppercase">
143-
Libraries &amp; SDKs
127+
Resources
144128
</a>
145129
</h4>
146130
<hr className="border-t border-border my-2" />
147131
<Cards>
148132
<SmallCard
149-
icon={<Js />}
150-
href="/reference/stacks.js"
151-
title="Stacks.js"
152-
description="JavaScript SDK for building applications on Stacks with transactions, network utilities, and wallet integration."
133+
icon={<Play />}
134+
href="/resources/guides"
135+
title="Guides"
136+
description="Step-by-step walkthroughs for building on Bitcoin layers."
153137
/>
154138
<SmallCard
155-
icon={<Js />}
156-
href="/tools/clarinet/sdk-introduction"
157-
title="Clarinet JS SDK"
158-
description="JavaScript SDK for testing and interacting with Clarity smart contracts in simulated environments."
159-
/>
160-
{/* <SmallCard
161-
icon={<StacksIcon />}
162-
href="/reference/stacks-blockchain-api"
163-
title="Stacks Blockchain API Client"
164-
description="Type-safe JavaScript client library for interacting with the Stacks Blockchain API."
165-
/> */}
166-
</Cards>
167-
</div>
168-
<div className="flex flex-col">
169-
<h4 id="explore-by-category" className="text-muted-foreground scroll-m-20">
170-
<a href="#explore-by-category" className="not-prose group text-sm uppercase">
171-
Resources
172-
</a>
173-
</h4>
174-
<hr className="border-t border-border my-2" />
175-
<Cards>
176-
<SmallCard
177-
icon={<Clarity />}
178-
href="/resources/clarity"
179-
title="Clarity Reference"
180-
description="Comprehensive guides and function reference for the Clarity smart contract language."
139+
icon={<Braces />}
140+
href="/resources/snippets"
141+
title="Snippets"
142+
description="Reusable code examples for common Stacks and Bitcoin tasks."
181143
/>
182144
<SmallCard
183145
icon={<Database />}

app/[locale]/(home)/_pages/page.es.tsx

Lines changed: 10 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/[locale]/(home)/reference/_pages/page.en.tsx

Lines changed: 11 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { Cards, IndexCard } from '@/components/card';
2-
import { Js } from '@/components/ui/icon';
1+
import Link from 'next/link';
32

43
export default function ReferencePage() {
54
return (
@@ -10,32 +9,16 @@ export default function ReferencePage() {
109
<h3 className="text-3xl">Libraries &amp; SDKs</h3>
1110
<hr className="border-t border-border mt-8" />
1211
</div>
13-
<Cards>
14-
<IndexCard
15-
icon={<Js />}
16-
href="/reference/stacks.js"
17-
title="Stacks.js"
18-
description="JavaScript SDK for building applications on Stacks with transactions, network utilities, and wallet integration."
19-
/>
20-
<IndexCard
21-
icon={<Js />}
22-
href="/tools/clarinet/sdk-introduction"
23-
title="Clarinet JS SDK"
24-
description="JavaScript SDK for testing and interacting with Clarity smart contracts in simulated environments."
25-
/>
26-
<IndexCard
27-
icon={<Js />}
28-
href="/tools/clarinet/browser-sdk-reference"
29-
title="Clarinet JS Browser SDK"
30-
description="JavaScript SDK for interacting with the simnet in web browsers."
31-
/>
32-
{/* <IndexCard
33-
icon={<API />}
34-
href="/reference/stacks-blockchain-api"
35-
title="Stacks Blockchain API Client"
36-
description="Type-safe JavaScript client library for interacting with the Stacks Blockchain API."
37-
/> */}
38-
</Cards>
12+
<p className="text-sm text-muted-foreground">
13+
Looking for SDK documentation? Visit{' '}
14+
<Link
15+
href="https://docs.stacks.co/reference"
16+
className="text-primary underline underline-offset-4"
17+
>
18+
docs.stacks.co/reference
19+
</Link>{' '}
20+
for the latest resources.
21+
</p>
3922
</div>
4023
</div>
4124
</main>

app/[locale]/(home)/reference/_pages/page.es.tsx

Lines changed: 11 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/[locale]/(home)/resources/_pages/page.en.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Code, Database, Terminal } from 'lucide-react';
22
import { Cards, IndexCard } from '@/components/card';
3-
import { Clarity } from '@/components/ui/icon';
43

54
export default function ResourcesPage() {
65
return (
@@ -12,12 +11,6 @@ export default function ResourcesPage() {
1211
<hr className="border-t border-border mt-8" />
1312
</div>
1413
<Cards>
15-
<IndexCard
16-
icon={<Clarity />}
17-
href="/resources/clarity"
18-
title="Clarity Reference"
19-
description="Comprehensive guides and function reference for the Clarity smart contract language."
20-
/>
2114
<IndexCard
2215
icon={<Terminal />}
2316
href="/resources/guides"

app/[locale]/(home)/resources/_pages/page.es.tsx

Lines changed: 0 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/[locale]/(home)/tools/_pages/page.en.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Brackets, Database } from 'lucide-react';
22
import { Cards, IndexCard } from '@/components/card';
3-
import { Chainhook, Clarinet } from '@/components/ui/icon';
3+
import { Chainhook } from '@/components/ui/icon';
44

55
export default function ToolsPage() {
66
return (
@@ -12,12 +12,6 @@ export default function ToolsPage() {
1212
<hr className="border-t border-border mt-8" />
1313
</div>
1414
<Cards>
15-
<IndexCard
16-
href="/tools/clarinet"
17-
title="Clarinet"
18-
icon={<Clarinet />}
19-
description="A comprehensive development environment for building and testing Clarity smart contracts."
20-
/>
2115
<IndexCard
2216
href="/tools/chainhook"
2317
title="Chainhook"

app/[locale]/(home)/tools/_pages/page.es.tsx

Lines changed: 1 addition & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)