2026-01-28 23:00:58 -05:00

173 lines
5.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1920, height=1080">
<title>AI Assistant</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #0f0f1a;
width: 1920px;
height: 1080px;
display: flex;
align-items: center;
justify-content: center;
}
.window {
width: 900px;
height: 700px;
background: #1a1a2e;
border-radius: 12px;
box-shadow: 0 25px 80px rgba(0,0,0,0.5);
display: flex;
flex-direction: column;
border: 1px solid #2a2a4a;
}
.titlebar {
height: 48px;
background: #252540;
display: flex;
align-items: center;
padding: 0 16px;
border-bottom: 1px solid #2a2a4a;
}
.traffic-lights { display: flex; gap: 8px; }
.light { width: 12px; height: 12px; border-radius: 50%; }
.light.red { background: #ff5f57; }
.light.yellow { background: #ffbd2e; }
.light.green { background: #28ca41; }
.title { flex: 1; text-align: center; color: #8888aa; font-size: 14px; font-weight: 500; }
.chat-area { flex: 1; padding: 24px; display: flex; flex-direction: column; gap: 16px; justify-content: flex-end; }
.message { display: flex; flex-direction: column; max-width: 80%; }
.message.user { align-self: flex-end; }
.message.ai { align-self: flex-start; }
.bubble { padding: 14px 18px; border-radius: 18px; font-size: 15px; line-height: 1.5; }
.message.user .bubble {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
border-bottom-right-radius: 6px;
}
.message.ai .bubble {
background: #2a2a4a;
color: #e2e2f0;
border-bottom-left-radius: 6px;
}
.embed-slots {
margin-top: 12px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
height: 280px;
gap: 2px;
background: #2a2a4a;
border-radius: 12px;
overflow: hidden;
}
.embed-slot {
background: #1a1a2e;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
}
.embed-slot.ghl { grid-row: span 2; border-right: 2px solid #2a2a4a; }
.slot-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
color: white;
}
.slot-icon.ghl { background: #f97316; }
.slot-icon.qb { background: #22c55e; }
.slot-icon.stripe { background: #6366f1; }
.slot-label { color: #8888aa; font-size: 12px; }
.spinner-small {
width: 16px;
height: 16px;
border: 2px solid #2a2a4a;
border-top-color: #6366f1;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.input-area { padding: 16px 24px 24px; border-top: 1px solid #2a2a4a; }
.input-wrapper {
display: flex;
gap: 12px;
align-items: center;
background: #12121f;
border: 1px solid #2a2a4a;
border-radius: 12px;
padding: 12px 16px;
}
.input-field { flex: 1; color: #5a5a7a; font-size: 14px; }
.send-btn {
width: 36px;
height: 36px;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.send-btn svg { width: 18px; height: 18px; color: white; }
</style>
</head>
<body>
<div class="window">
<div class="titlebar">
<div class="traffic-lights">
<div class="light red"></div>
<div class="light yellow"></div>
<div class="light green"></div>
</div>
<div class="title">AI Assistant</div>
<div style="width: 52px;"></div>
</div>
<div class="chat-area">
<div class="message user">
<div class="bubble">show me all the customers who are behind on payments and help me come up with an outreach strategy to collect $$ from them. Include the impact this can have on profit</div>
</div>
<div class="message ai">
<div class="bubble">one moment</div>
<div class="embed-slots">
<div class="embed-slot ghl">
<div class="slot-icon ghl">GHL</div>
<div class="slot-label">GoHighLevel</div>
<div class="spinner-small"></div>
</div>
<div class="embed-slot">
<div class="slot-icon qb">QB</div>
<div class="slot-label">QuickBooks</div>
<div class="spinner-small"></div>
</div>
<div class="embed-slot">
<div class="slot-icon stripe">S</div>
<div class="slot-label">Stripe</div>
<div class="spinner-small"></div>
</div>
</div>
</div>
</div>
<div class="input-area">
<div class="input-wrapper">
<span class="input-field">Type a message...</span>
<div class="send-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M22 2L11 13M22 2L15 22L11 13L2 9L22 2Z"/>
</svg>
</div>
</div>
</div>
</div>
</body>
</html>