Skip to content

Commit dc966e1

Browse files
committed
feat(kiloclaw): style config service nudge banner
1 parent 1a76e07 commit dc966e1

1 file changed

Lines changed: 23 additions & 17 deletions

File tree

src/app/(app)/claw/components/ClawDashboard.tsx

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client';
22

33
import { useCallback, useState } from 'react';
4-
import { TriangleAlert } from 'lucide-react';
4+
import { Zap, TriangleAlert } from 'lucide-react';
55
import type { KiloClawDashboardStatus } from '@/lib/kiloclaw/types';
66
import {
77
useKiloClawGatewayStatus,
@@ -98,22 +98,28 @@ export function ClawDashboard({ status }: { status: KiloClawDashboardStatus | un
9898
)}
9999

100100
{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>
117123
)}
118124

119125
<Card className="mt-6">

0 commit comments

Comments
 (0)