Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0a936e2
Implement Ask Arie chat widget with Markdown rendering and API integr…
JonnieSparkles Feb 3, 2026
2abd039
Add Ask Arie dark theme avatar and improve Markdown link handling
JonnieSparkles Feb 3, 2026
bccc844
ArIO SDK -> ar.io SDK
JonnieSparkles Feb 3, 2026
532b45f
Refactor Ask Arie widget styles and layout
JonnieSparkles Feb 3, 2026
d58409c
Fix accessibility issue by adding alt attribute to image in NFT stora…
JonnieSparkles Feb 3, 2026
47d51e2
Update Ask Arie API endpoints to use production URLs
JonnieSparkles Feb 3, 2026
7996e3a
Refactor HealthCheckResponse in Ask Arie API
JonnieSparkles Feb 5, 2026
8cc5813
Implement Ask Arie chat widget with Markdown rendering and API integr…
JonnieSparkles Feb 3, 2026
c420e5f
Add Ask Arie dark theme avatar and improve Markdown link handling
JonnieSparkles Feb 3, 2026
cf287f4
ArIO SDK -> ar.io SDK
JonnieSparkles Feb 3, 2026
3ee1e34
Refactor Ask Arie widget styles and layout
JonnieSparkles Feb 3, 2026
d2f8f47
Fix accessibility issue by adding alt attribute to image in NFT stora…
JonnieSparkles Feb 3, 2026
dc6f1d4
Update Ask Arie API endpoints to use production URLs
JonnieSparkles Feb 3, 2026
b06938b
Refactor HealthCheckResponse in Ask Arie API
JonnieSparkles Feb 5, 2026
d8c0824
Merge remote-tracking branch 'origin/feat/ask-arie' into feat/ask-arie
JonnieSparkles Feb 12, 2026
c54f55d
Update starter questions in Ask Arie widget for improved user guidance
JonnieSparkles Feb 12, 2026
1f092cf
Merge branch 'main' into feat/ask-arie
JonnieSparkles Feb 12, 2026
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ yarn-error.log*
.vercel
next-env.d.ts
.tmp*
.temp/
._*
5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion content/build/guides/storing-nfts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,6 @@ Your NFTs are now stored permanently with guaranteed access, following industry
href="/build/upload/manifests"
title="Manifests"
description="Deep dive into manifest creation and organization"
icon={<Image className="w-8 h-8" />}
icon={<Image className="w-8 h-8" alt="" />}
/>
</Cards>
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ console.log(nameData.name); // e.g., "jonniesparkles"
title="Set Records Programmatically"
icon={<Code />}
>
Use the ArIO SDK to programmatically manage ArNS records.
Use the ar.io SDK to programmatically manage ArNS records.
</Card>

<Card
Expand Down
8 changes: 4 additions & 4 deletions content/build/guides/working-with-arns/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ ArNS is a decentralized naming system that allows you to:
<Card
icon={<Code className="w-6 h-6" />}
title="Register ArNS Names Programmatically"
description="Use the ArIO SDK to programmatically register and purchase ArNS names"
description="Use the ar.io SDK to programmatically register and purchase ArNS names"
href="/build/guides/working-with-arns/register-arns-programmatically"
/>
<Card
icon={<Code className="w-6 h-6" />}
title="Set Records Programmatically"
description="Use the ArIO SDK to programmatically set and manage ArNS records"
description="Use the ar.io SDK to programmatically set and manage ArNS records"
href="/build/guides/working-with-arns/set-arns-records-programmatically"
/>
<Card
Expand Down Expand Up @@ -104,8 +104,8 @@ The smart contract system that manages ArNS name ownership, transfers, and recor
href="/build/access"
/>
<Card
title="ArIO SDK Documentation"
description="Explore the full ArIO SDK for advanced ArNS operations"
title="ar.io SDK Documentation"
description="Explore the full ar.io SDK for advanced ArNS operations"
href="/sdks/ar-io-sdk"
/>
<Card
Expand Down
4 changes: 2 additions & 2 deletions content/build/guides/working-with-arns/manage-arns-ui.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ The simplest way to register or manage an ArNS name is by using the user interfa
title="Register Programmatically"
icon={<Code />}
>
Use the ArIO SDK to programmatically register ArNS names.
Use the ar.io SDK to programmatically register ArNS names.
</Card>

<Card
href="/build/guides/working-with-arns/set-arns-records-programmatically"
title="Set Records Programmatically"
icon={<Code />}
>
Use the ArIO SDK to programmatically manage ArNS records.
Use the ar.io SDK to programmatically manage ArNS records.
</Card>

<Card
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Use the "Manage Assets" button at the top right of the screen to view and manage
title="Register Programmatically"
icon={<Code />}
>
Use the ArIO SDK to programmatically register ArNS names.
Use the ar.io SDK to programmatically register ArNS names.
</Card>

<Card
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: "Registering ArNS Names Programmatically"
description: "Use the ArIO SDK to programmatically register and purchase ArNS names"
description: "Use the ar.io SDK to programmatically register and purchase ArNS names"
---

import { Card, Cards } from "fumadocs-ui/components/card";
import { Code, Globe, Book, Settings } from "lucide-react";

Use the **ArIO SDK** to programmatically register and purchase ArNS names. This approach allows you to automate the registration process, check availability, calculate costs, and complete purchases programmatically.
Use the **ar.io SDK** to programmatically register and purchase ArNS names. This approach allows you to automate the registration process, check availability, calculate costs, and complete purchases programmatically.

## Prerequisites

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: "Setting ArNS Records Programmatically"
description: "Use the ArIO SDK to programmatically set and manage ArNS records"
description: "Use the ar.io SDK to programmatically set and manage ArNS records"
---

import { Code, Globe, Book } from "lucide-react";

Use the **ArIO SDK** to programmatically set and manage ArNS records. This approach gives you full control over your ArNS operations and allows for automation and integration into your applications.
Use the **ar.io SDK** to programmatically set and manage ArNS records. This approach gives you full control over your ArNS operations and allows for automation and integration into your applications.

## Prerequisites

Expand Down Expand Up @@ -361,9 +361,9 @@ async function safeSetRecord(arnsName, undername, transactionId) {

<Card
href="/sdks/ar-io-sdk"
title="ArIO SDK"
title="ar.io SDK"
icon={<Code />}
>
Explore the full ArIO SDK documentation.
Explore the full ar.io SDK documentation.
</Card>
</Cards>
Binary file added public/brand/ask-arie-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { RootProvider } from "fumadocs-ui/provider";
import type { Metadata } from "next";
import Script from "next/script";
import SearchDialog from "@/components/search";
import { AskArieWidget } from "@/components/ask-arie/AskArieWidget";
import { Plus_Jakarta_Sans } from "next/font/google";

const plusJakartaSans = Plus_Jakarta_Sans({
Expand Down Expand Up @@ -48,6 +49,7 @@ export default function Layout({ children }: LayoutProps<"/">) {
}}
>
{children}
<AskArieWidget />
</RootProvider>
</body>
</html>
Expand Down
Loading