|
1 | 1 | 'use client'; |
2 | 2 |
|
3 | 3 | import { useCallback, useState } from 'react'; |
4 | | -import { TriangleAlert } from 'lucide-react'; |
| 4 | +import { Zap, TriangleAlert } from 'lucide-react'; |
5 | 5 | import type { KiloClawDashboardStatus } from '@/lib/kiloclaw/types'; |
6 | 6 | import { |
7 | 7 | useKiloClawGatewayStatus, |
@@ -98,22 +98,28 @@ export function ClawDashboard({ status }: { status: KiloClawDashboardStatus | un |
98 | 98 | )} |
99 | 99 |
|
100 | 100 | {configServiceNudgeVisible && ( |
101 | | - <Alert> |
102 | | - <AlertDescription className="flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between"> |
103 | | - <span> |
104 | | - Need help getting KiloClaw configured? Get up and running in one hour with 2 months |
105 | | - free KiloClaw hosting included. |
106 | | - </span> |
107 | | - <a |
108 | | - href="https://kilo.ai/kiloclaw/config-service" |
109 | | - target="_blank" |
110 | | - rel="noopener noreferrer" |
111 | | - className="bg-primary text-primary-foreground hover:bg-primary/90 inline-flex shrink-0 items-center justify-center rounded-md px-4 py-2 text-sm font-medium transition-colors" |
112 | | - > |
113 | | - Learn more |
114 | | - </a> |
115 | | - </AlertDescription> |
116 | | - </Alert> |
| 101 | + <div className="border-brand-primary/30 bg-brand-primary/5 flex flex-col gap-3 rounded-xl border p-4 sm:flex-row sm:items-center sm:justify-between"> |
| 102 | + <div className="flex items-start gap-3"> |
| 103 | + <Zap className="text-brand-primary mt-0.5 h-5 w-5 shrink-0" /> |
| 104 | + <div> |
| 105 | + <p className="text-brand-primary text-sm font-semibold"> |
| 106 | + Go from inbox chaos to an AI executive assistant — in one hour. |
| 107 | + </p> |
| 108 | + <p className="text-muted-foreground mt-0.5 text-sm"> |
| 109 | + A KiloClaw expert configures your email, calendar, and messaging live on a call. |
| 110 | + Includes <b>2 months free</b> hosting. |
| 111 | + </p> |
| 112 | + </div> |
| 113 | + </div> |
| 114 | + <a |
| 115 | + href="https://kilo.ai/kiloclaw/config-service" |
| 116 | + target="_blank" |
| 117 | + rel="noopener noreferrer" |
| 118 | + className="bg-brand-primary text-primary-foreground hover:bg-brand-primary/90 inline-flex shrink-0 items-center justify-center rounded-md px-4 py-2 text-sm font-medium transition-colors" |
| 119 | + > |
| 120 | + Book your session |
| 121 | + </a> |
| 122 | + </div> |
117 | 123 | )} |
118 | 124 |
|
119 | 125 | <Card className="mt-6"> |
|
0 commit comments