@@ -3,8 +3,8 @@ import { MessageBubble } from "@/components/ui/message-bubble";
33function StepNumber ( { n } : { n : number } ) {
44 return (
55 < span
6- className = "inline-flex items-center justify-center h-5 w-5 shrink-0 rounded-full text-[10px] font-bold text-black align-middle mr-1 .5"
7- style = { { background : "linear-gradient(178deg , #ffd4d7 , #ff8594 )" } }
6+ className = "inline-flex items-center justify-center h-5 w-5 shrink-0 rounded-full text-[10px] text-white align-middle mr-2 .5"
7+ style = { { background : "linear-gradient(to bottom , #FF2A3A , #BE061C )" } }
88 >
99 { n }
1010 </ span >
@@ -16,15 +16,15 @@ export function SetupDialog() {
1616 < div className = "flex flex-col gap-3" >
1717 { /* Step 1: Install skills */ }
1818 < MessageBubble variant = "secondary" clickable = { false } >
19- < StepNumber n = { 1 } /> Install the skills:
19+ < span className = "flex items-center" > < StepNumber n = { 1 } /> Install the skills:</ span >
2020 </ MessageBubble >
2121 < MessageBubble variant = "primary" >
2222 Install smartclaws-producer and smartclaws-reader skills from ClawHub
2323 </ MessageBubble >
2424
2525 { /* Step 2: Set up SmartClaws */ }
2626 < MessageBubble variant = "secondary" clickable = { false } >
27- < StepNumber n = { 2 } /> Initialize the CLI and generate a wallet:
27+ < span className = "flex items-center" > < StepNumber n = { 2 } /> Initialize the CLI and generate a wallet:</ span >
2828 </ MessageBubble >
2929 < MessageBubble variant = "primary" >
3030 Set up SmartClaws and create a new wallet
@@ -38,23 +38,23 @@ export function SetupDialog() {
3838
3939 { /* Step 3: Register device group */ }
4040 < MessageBubble variant = "secondary" clickable = { false } >
41- < StepNumber n = { 3 } /> Fund the wallet and register:
41+ < span className = "flex items-center" > < StepNumber n = { 3 } /> Fund the wallet and register:</ span >
4242 </ MessageBubble >
4343 < MessageBubble variant = "primary" >
4444 Wallet funded. Register a new device group: my-sensors.
4545 </ MessageBubble >
4646
4747 { /* Step 4: Set up sensor */ }
4848 < MessageBubble variant = "secondary" clickable = { false } >
49- < StepNumber n = { 4 } /> Connect a sensor and start publishing data:
49+ < span className = "flex items-center" > < StepNumber n = { 4 } /> Connect a sensor and start publishing data:</ span >
5050 </ MessageBubble >
5151 < MessageBubble variant = "primary" >
5252 Set up a temperature sensor and start publishing data
5353 </ MessageBubble >
5454
5555 { /* Step 5: Query data */ }
5656 < MessageBubble variant = "secondary" clickable = { false } >
57- < StepNumber n = { 5 } /> Query your on-chain data:
57+ < span className = "flex items-center" > < StepNumber n = { 5 } /> Query your on-chain data:</ span >
5858 </ MessageBubble >
5959 < MessageBubble variant = "primary" >
6060 What's the current temperature? Show me the trend for the last hour
0 commit comments