BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/sv11-twango/voice-chat-03
This component no longer exists. It was in sv11-twango’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

Voice Chat 03

sv11-twango/voice-chat-03
RemovedBlock

A tall voice-chat card with a conversation bar anchored at the bottom, an empty-state orb, and per-message copy buttons.

Install it

npx shadcn@latest add http://sv11.ui.twango.dev/r/voice-chat-03.json

Source

registry itemsv11.ui.twango.dev/r/voice-chat-03.json · first 6 KB
1<script lang="ts">
2 import CheckIcon from "@lucide/svelte/icons/check";
3 import CopyIcon from "@lucide/svelte/icons/copy";
4 import { Button } from "$UI$/button/index.js";
5 import { Card, CardContent } from "$UI$/card/index.js";
6 import {
7 Conversation,
8 ConversationContent,
9 ConversationEmptyState,
10 ConversationScrollButton,
11 } from "$UI$/conversation/index.js";
12 import { ConversationBar } from "$UI$/conversation-bar/index.js";
13 import type {
14 ConversationAdapter,
15 ConversationConfig,
16 ConversationMessage,
17 } from "$UI$/conversation-bar/types.js";
18 import { Message, MessageContent } from "$UI$/message/index.js";
19 import { Orb } from "$UI$/orb/index.js";
20 import { Response } from "$UI$/response/index.js";
21 import {
22 Tooltip,
23 TooltipContent,
24 TooltipProvider,
25 TooltipTrigger,
26 } from "$UI$/tooltip/index.js";
27 import { cn } from "$UTILS$.js";
28
29 let { class: className }: { class?: string } = $props();
30
31 type ChatMessage = {
32 role: "user" | "assistant";
33 content: string;
34 };
35
36 const GREETING = "Hi, I'm your voice assistant. Tap the phone button or type a message to begin.";
37 const CANNED_REPLIES = [
38 "Got it — tell me a bit more about what you're after.",
39 "Sure, happy to help. Could you give me an example?",
40 "Here's what I'd suggest as a starting point — let me know if you want to go deeper on any part.",
41 "That's a good point. Want me to expand on it?",
42 ];
43
44 let messages = $state<ChatMessage[]>([]);
45 let copiedIndex = $state<number | null>(null);
46 let timers: ReturnType<typeof setTimeout>[] = [];
47 let replyIndex = 0;
48
49 function clearTimers() {
50 timers.forEach(clearTimeout);
51 timers = [];
52 }
53
54 function pushMessage(message: ChatMessage) {
55 messages = [...messages, message];
56 }
57
58 const cannedAdapter: ConversationAdapter = {
59 async connect(config: ConversationConfig) {
60 clearTimers();
61 config.onStatusChange("connecting");
62 timers.push(
63 setTimeout(() => {
64 config.onStatusChange("connected");
65 config.onConnect();
66 timers.push(
67 setTimeout(() => {
68 const greeting: ConversationMessage = { source: "ai", message: GREETING };
69 config.onMessage(greeting);
70 }, 600)
71 );
72 }, 900)
73 );
74 },
75 disconnect() {
76 clearTimers();
77 },
78 sendMessage() {
79 const reply = CANNED_REPLIES[replyIndex % CANNED_REPLIES.length];
80 replyIndex += 1;
81 timers.push(
82 setTimeout(() => {
83 pushMessage({ role: "assistant", content: reply });
84 }, 900)
85 );
86 },
87 sendContextualUpdate() {
88// … truncated

What it pulls in

Other registry items

  • button
  • card
  • https://sv11.ui.twango.dev/r/conversation.json
  • https://sv11.ui.twango.dev/r/conversation-bar.json
  • https://sv11.ui.twango.dev/r/message.json
  • https://sv11.ui.twango.dev/r/orb.json
  • https://sv11.ui.twango.dev/r/response.json
  • tooltip

Facts

Registry
sv11-twango
Type
registry:block
Access
Free
Files written
0
Licence
MIT
In the index
at or before 2026-08-02
Last confirmed
10 days ago

Go to the source

sv11.ui.twango.dev twangodev/sv11-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex