398 lines
10 KiB
HTML
398 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MCP Power Combos</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
|
|
min-height: 100vh;
|
|
padding: 40px;
|
|
color: white;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 3rem;
|
|
font-weight: 900;
|
|
background: linear-gradient(135deg, #00d4ff, #7c3aed, #f472b6);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
margin-bottom: 15px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.header .subtitle {
|
|
font-size: 1.2rem;
|
|
color: #a5b4fc;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.central-hub {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.ghl-core {
|
|
width: 180px;
|
|
height: 180px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #7c3aed, #4f46e5);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 0 60px rgba(124, 58, 237, 0.5), 0 0 100px rgba(124, 58, 237, 0.3);
|
|
position: relative;
|
|
animation: pulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); }
|
|
50% { transform: scale(1.05); }
|
|
}
|
|
|
|
.ghl-core::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: 220px;
|
|
height: 220px;
|
|
border-radius: 50%;
|
|
border: 2px dashed rgba(124, 58, 237, 0.4);
|
|
animation: spin 20s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.ghl-core .icon {
|
|
font-size: 3rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.ghl-core .label {
|
|
font-weight: 700;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.ghl-core .sub {
|
|
font-size: 0.75rem;
|
|
color: rgba(255,255,255,0.7);
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.combos-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 25px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.combo-card {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 20px;
|
|
padding: 25px;
|
|
backdrop-filter: blur(10px);
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.combo-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: var(--accent);
|
|
}
|
|
|
|
.combo-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.combo-card.blue { --accent: linear-gradient(90deg, #00d4ff, #0ea5e9); }
|
|
.combo-card.purple { --accent: linear-gradient(90deg, #a855f7, #7c3aed); }
|
|
.combo-card.pink { --accent: linear-gradient(90deg, #f472b6, #ec4899); }
|
|
.combo-card.green { --accent: linear-gradient(90deg, #22c55e, #10b981); }
|
|
|
|
.combo-tools {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.tool-badge {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
padding: 8px 14px;
|
|
border-radius: 30px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.tool-badge .emoji {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.plus {
|
|
color: #a5b4fc;
|
|
font-weight: 700;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.combo-example {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border-radius: 12px;
|
|
padding: 15px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.combo-example .label {
|
|
font-size: 0.7rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: #a5b4fc;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.combo-example .command {
|
|
font-size: 0.95rem;
|
|
color: #e2e8f0;
|
|
font-style: italic;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.combo-example .command::before {
|
|
content: '"';
|
|
color: #a855f7;
|
|
}
|
|
|
|
.combo-example .command::after {
|
|
content: '"';
|
|
color: #a855f7;
|
|
}
|
|
|
|
.arrow-result {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-top: 12px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid rgba(255,255,255,0.1);
|
|
}
|
|
|
|
.arrow-result .arrow {
|
|
color: #22c55e;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.arrow-result .result {
|
|
font-size: 0.85rem;
|
|
color: #86efac;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.bottom-tagline {
|
|
text-align: center;
|
|
padding: 35px;
|
|
background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.1));
|
|
border-radius: 20px;
|
|
border: 1px solid rgba(124, 58, 237, 0.3);
|
|
}
|
|
|
|
.bottom-tagline .main {
|
|
font-size: 1.6rem;
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.bottom-tagline .main .highlight {
|
|
background: linear-gradient(135deg, #00d4ff, #7c3aed);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.bottom-tagline .sub {
|
|
color: #a5b4fc;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.flow-visual {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin: 30px 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flow-step {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.flow-step .icon-box {
|
|
width: 70px;
|
|
height: 70px;
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.flow-step.speak .icon-box { background: linear-gradient(135deg, #f472b6, #ec4899); }
|
|
.flow-step.brain .icon-box { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
|
|
.flow-step.magic .icon-box { background: linear-gradient(135deg, #22c55e, #10b981); }
|
|
|
|
.flow-step .label {
|
|
font-size: 0.8rem;
|
|
color: #a5b4fc;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.flow-arrow {
|
|
font-size: 2rem;
|
|
color: #4f46e5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>MCP Power Combos</h1>
|
|
<div class="subtitle">Stack tools. Speak naturally. Watch the magic happen.</div>
|
|
</div>
|
|
|
|
<div class="flow-visual">
|
|
<div class="flow-step speak">
|
|
<div class="icon-box">🗣️</div>
|
|
<div class="label">You speak</div>
|
|
</div>
|
|
<div class="flow-arrow">→</div>
|
|
<div class="flow-step brain">
|
|
<div class="icon-box">🧠</div>
|
|
<div class="label">MCP orchestrates</div>
|
|
</div>
|
|
<div class="flow-arrow">→</div>
|
|
<div class="flow-step magic">
|
|
<div class="icon-box">✨</div>
|
|
<div class="label">Tools execute</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="central-hub">
|
|
<div class="ghl-core">
|
|
<div class="icon">⚡</div>
|
|
<div class="label">GHL</div>
|
|
<div class="sub">Your CRM Hub</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="combos-grid">
|
|
<div class="combo-card blue">
|
|
<div class="combo-tools">
|
|
<div class="tool-badge"><span class="emoji">📅</span> Calendar</div>
|
|
<span class="plus">+</span>
|
|
<div class="tool-badge"><span class="emoji">💬</span> SMS</div>
|
|
</div>
|
|
<div class="combo-example">
|
|
<div class="label">Natural language command</div>
|
|
<div class="command">Check my calendar and text the client if I'm free tomorrow</div>
|
|
</div>
|
|
<div class="arrow-result">
|
|
<span class="arrow">→</span>
|
|
<span class="result">Auto-schedules & confirms via text</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="combo-card purple">
|
|
<div class="combo-tools">
|
|
<div class="tool-badge"><span class="emoji">🔍</span> Web Search</div>
|
|
<span class="plus">+</span>
|
|
<div class="tool-badge"><span class="emoji">📧</span> Email</div>
|
|
</div>
|
|
<div class="combo-example">
|
|
<div class="label">Natural language command</div>
|
|
<div class="command">Find competitor info and draft an outreach email</div>
|
|
</div>
|
|
<div class="arrow-result">
|
|
<span class="arrow">→</span>
|
|
<span class="result">Research + personalized email ready</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="combo-card pink">
|
|
<div class="combo-tools">
|
|
<div class="tool-badge"><span class="emoji">💼</span> Slack</div>
|
|
<span class="plus">+</span>
|
|
<div class="tool-badge"><span class="emoji">🎯</span> Opportunities</div>
|
|
</div>
|
|
<div class="combo-example">
|
|
<div class="label">Natural language command</div>
|
|
<div class="command">Post a Slack alert when a deal moves to 'Closed Won'</div>
|
|
</div>
|
|
<div class="arrow-result">
|
|
<span class="arrow">→</span>
|
|
<span class="result">Team gets instant win notifications</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="combo-card green">
|
|
<div class="combo-tools">
|
|
<div class="tool-badge"><span class="emoji">📊</span> Analytics</div>
|
|
<span class="plus">+</span>
|
|
<div class="tool-badge"><span class="emoji">📝</span> Notes</div>
|
|
</div>
|
|
<div class="combo-example">
|
|
<div class="label">Natural language command</div>
|
|
<div class="command">Summarize this week's pipeline and add to my Monday brief</div>
|
|
</div>
|
|
<div class="arrow-result">
|
|
<span class="arrow">→</span>
|
|
<span class="result">Weekly report auto-generated</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="bottom-tagline">
|
|
<div class="main">This isn't just API access — it's your <span class="highlight">CRM on autopilot</span></div>
|
|
<div class="sub">Controlled by natural language. No code required.</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |