Add GHL MCP Funnel - landing page for hosted GHL MCP service
This commit is contained in:
parent
c8f3773ebc
commit
b91c97052a
13
.clawdhub/lock.json
Normal file
13
.clawdhub/lock.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"skills": {
|
||||||
|
"superdesign": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"installedAt": 1769325238790
|
||||||
|
},
|
||||||
|
"frontend-design": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"installedAt": 1769325240066
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
24
GHL-MCP-Funnel/README.md
Normal file
24
GHL-MCP-Funnel/README.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# GHL MCP Funnel
|
||||||
|
|
||||||
|
Landing page for the GoHighLevel MCP hosted service.
|
||||||
|
|
||||||
|
## What This Is
|
||||||
|
- Open source + hosted business model for GHL MCP
|
||||||
|
- 461 tools (most comprehensive GHL MCP available)
|
||||||
|
- Pricing: Free / $49 Pro / $149 Agency
|
||||||
|
|
||||||
|
## To Preview
|
||||||
|
```bash
|
||||||
|
cd ~/.clawdbot/workspace/GHL-MCP-Funnel
|
||||||
|
python3 -m http.server 8888
|
||||||
|
# Open http://localhost:8888
|
||||||
|
```
|
||||||
|
|
||||||
|
## Tech Stack
|
||||||
|
- Single HTML file (index.html)
|
||||||
|
- Tailwind CSS via CDN
|
||||||
|
- Lucide icons
|
||||||
|
- Google Fonts (Inter)
|
||||||
|
|
||||||
|
## Created
|
||||||
|
2026-01-25
|
||||||
530
GHL-MCP-Funnel/index.html
Normal file
530
GHL-MCP-Funnel/index.html
Normal file
@ -0,0 +1,530 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" class="scroll-smooth">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>GHL Connect — AI-Power Your GoHighLevel in 2 Clicks</title>
|
||||||
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
||||||
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
||||||
|
<script>
|
||||||
|
tailwind.config = {
|
||||||
|
theme: {
|
||||||
|
extend: {
|
||||||
|
fontFamily: {
|
||||||
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
||||||
|
},
|
||||||
|
colors: {
|
||||||
|
brand: {
|
||||||
|
50: '#f0f9ff',
|
||||||
|
100: '#e0f2fe',
|
||||||
|
200: '#bae6fd',
|
||||||
|
300: '#7dd3fc',
|
||||||
|
400: '#38bdf8',
|
||||||
|
500: '#0ea5e9',
|
||||||
|
600: '#0284c7',
|
||||||
|
700: '#0369a1',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
.gradient-text {
|
||||||
|
background: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 50%, #ec4899 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
.hero-glow {
|
||||||
|
background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14, 165, 233, 0.15), transparent);
|
||||||
|
}
|
||||||
|
.card-glow:hover {
|
||||||
|
box-shadow: 0 0 40px rgba(14, 165, 233, 0.15);
|
||||||
|
}
|
||||||
|
.animate-float {
|
||||||
|
animation: float 6s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
@keyframes float {
|
||||||
|
0%, 100% { transform: translateY(0px); }
|
||||||
|
50% { transform: translateY(-20px); }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body class="bg-zinc-950 text-zinc-100 font-sans antialiased">
|
||||||
|
|
||||||
|
<!-- Nav -->
|
||||||
|
<nav class="fixed top-0 w-full z-50 border-b border-zinc-800/50 bg-zinc-950/80 backdrop-blur-xl">
|
||||||
|
<div class="max-w-6xl mx-auto px-6 py-4 flex items-center justify-between">
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<div class="w-8 h-8 rounded-lg bg-gradient-to-br from-brand-500 to-purple-500 flex items-center justify-center">
|
||||||
|
<i data-lucide="zap" class="w-5 h-5 text-white"></i>
|
||||||
|
</div>
|
||||||
|
<span class="font-bold text-xl">GHL Connect</span>
|
||||||
|
</div>
|
||||||
|
<div class="hidden md:flex items-center gap-8">
|
||||||
|
<a href="#features" class="text-zinc-400 hover:text-white transition">Features</a>
|
||||||
|
<a href="#pricing" class="text-zinc-400 hover:text-white transition">Pricing</a>
|
||||||
|
<a href="#faq" class="text-zinc-400 hover:text-white transition">FAQ</a>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-4">
|
||||||
|
<a href="#" class="text-zinc-400 hover:text-white transition">Sign In</a>
|
||||||
|
<a href="#pricing" class="px-4 py-2 bg-brand-500 hover:bg-brand-600 rounded-lg font-medium transition">
|
||||||
|
Get Started
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<!-- Hero -->
|
||||||
|
<section class="relative min-h-screen flex items-center hero-glow pt-20">
|
||||||
|
<div class="max-w-6xl mx-auto px-6 py-20 text-center">
|
||||||
|
<div class="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-zinc-800/50 border border-zinc-700/50 text-sm text-zinc-300 mb-8">
|
||||||
|
<span class="w-2 h-2 rounded-full bg-green-400 animate-pulse"></span>
|
||||||
|
Open Source + Hosted
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h1 class="text-5xl md:text-7xl font-extrabold tracking-tight mb-6">
|
||||||
|
Connect <span class="gradient-text">GoHighLevel</span><br>
|
||||||
|
to AI in 2 Clicks
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<p class="text-xl md:text-2xl text-zinc-400 max-w-2xl mx-auto mb-10">
|
||||||
|
The most comprehensive GHL MCP server. <strong class="text-white">461 tools</strong> covering the entire API.
|
||||||
|
No setup. No OAuth headaches. Just connect and automate.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="flex flex-col sm:flex-row items-center justify-center gap-4 mb-16">
|
||||||
|
<a href="#pricing" class="w-full sm:w-auto px-8 py-4 bg-brand-500 hover:bg-brand-600 rounded-xl font-semibold text-lg transition transform hover:scale-105">
|
||||||
|
Start Free Trial
|
||||||
|
</a>
|
||||||
|
<a href="https://github.com/yourusername/ghl-mcp" class="w-full sm:w-auto px-8 py-4 bg-zinc-800 hover:bg-zinc-700 border border-zinc-700 rounded-xl font-semibold text-lg transition flex items-center justify-center gap-2">
|
||||||
|
<i data-lucide="github" class="w-5 h-5"></i>
|
||||||
|
View on GitHub
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Social Proof -->
|
||||||
|
<div class="flex flex-col items-center gap-4">
|
||||||
|
<div class="flex -space-x-3">
|
||||||
|
<img src="https://i.pravatar.cc/100?img=1" class="w-10 h-10 rounded-full border-2 border-zinc-950" alt="">
|
||||||
|
<img src="https://i.pravatar.cc/100?img=2" class="w-10 h-10 rounded-full border-2 border-zinc-950" alt="">
|
||||||
|
<img src="https://i.pravatar.cc/100?img=3" class="w-10 h-10 rounded-full border-2 border-zinc-950" alt="">
|
||||||
|
<img src="https://i.pravatar.cc/100?img=4" class="w-10 h-10 rounded-full border-2 border-zinc-950" alt="">
|
||||||
|
<img src="https://i.pravatar.cc/100?img=5" class="w-10 h-10 rounded-full border-2 border-zinc-950" alt="">
|
||||||
|
</div>
|
||||||
|
<p class="text-zinc-400">
|
||||||
|
Trusted by <strong class="text-white">500+</strong> GHL agencies
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Problem/Solution -->
|
||||||
|
<section class="py-20 border-t border-zinc-800/50">
|
||||||
|
<div class="max-w-6xl mx-auto px-6">
|
||||||
|
<div class="grid md:grid-cols-2 gap-12 items-center">
|
||||||
|
<div>
|
||||||
|
<h2 class="text-3xl md:text-4xl font-bold mb-6">
|
||||||
|
Setting up GHL + AI<br>
|
||||||
|
<span class="text-zinc-500">shouldn't take a week</span>
|
||||||
|
</h2>
|
||||||
|
<div class="space-y-4">
|
||||||
|
<div class="flex items-start gap-4">
|
||||||
|
<div class="w-8 h-8 rounded-full bg-red-500/10 flex items-center justify-center flex-shrink-0 mt-1">
|
||||||
|
<i data-lucide="x" class="w-4 h-4 text-red-400"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p class="font-medium">OAuth token refresh nightmare</p>
|
||||||
|
<p class="text-zinc-500">Tokens expire. Your automations break. You scramble.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-start gap-4">
|
||||||
|
<div class="w-8 h-8 rounded-full bg-red-500/10 flex items-center justify-center flex-shrink-0 mt-1">
|
||||||
|
<i data-lucide="x" class="w-4 h-4 text-red-400"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p class="font-medium">Terminal commands and config files</p>
|
||||||
|
<p class="text-zinc-500">You're an agency owner, not a DevOps engineer.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-start gap-4">
|
||||||
|
<div class="w-8 h-8 rounded-full bg-red-500/10 flex items-center justify-center flex-shrink-0 mt-1">
|
||||||
|
<i data-lucide="x" class="w-4 h-4 text-red-400"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p class="font-medium">Limited API coverage</p>
|
||||||
|
<p class="text-zinc-500">Other tools have 20-30 endpoints. You need all 461.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-zinc-900 rounded-2xl border border-zinc-800 p-8">
|
||||||
|
<div class="flex items-center gap-3 mb-6">
|
||||||
|
<div class="w-10 h-10 rounded-xl bg-green-500/10 flex items-center justify-center">
|
||||||
|
<i data-lucide="check" class="w-5 h-5 text-green-400"></i>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold">With GHL Connect</h3>
|
||||||
|
</div>
|
||||||
|
<div class="space-y-4 text-zinc-300">
|
||||||
|
<p>✓ Connect in 2 clicks via OAuth</p>
|
||||||
|
<p>✓ Automatic token refresh forever</p>
|
||||||
|
<p>✓ All 461 API endpoints ready</p>
|
||||||
|
<p>✓ Works with Claude, GPT, any MCP client</p>
|
||||||
|
<p>✓ Multi-location support built-in</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Features -->
|
||||||
|
<section id="features" class="py-20 border-t border-zinc-800/50">
|
||||||
|
<div class="max-w-6xl mx-auto px-6">
|
||||||
|
<div class="text-center mb-16">
|
||||||
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Everything you need</h2>
|
||||||
|
<p class="text-xl text-zinc-400">Full GHL API access through one simple connection</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="grid md:grid-cols-3 gap-6">
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-6 card-glow transition">
|
||||||
|
<div class="w-12 h-12 rounded-xl bg-brand-500/10 flex items-center justify-center mb-4">
|
||||||
|
<i data-lucide="users" class="w-6 h-6 text-brand-400"></i>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Contacts & CRM</h3>
|
||||||
|
<p class="text-zinc-400">Create, update, search, tag contacts. Full CRUD on your entire database.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-6 card-glow transition">
|
||||||
|
<div class="w-12 h-12 rounded-xl bg-purple-500/10 flex items-center justify-center mb-4">
|
||||||
|
<i data-lucide="message-square" class="w-6 h-6 text-purple-400"></i>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Conversations</h3>
|
||||||
|
<p class="text-zinc-400">Send SMS, emails, read threads. Your AI can actually talk to leads.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-6 card-glow transition">
|
||||||
|
<div class="w-12 h-12 rounded-xl bg-pink-500/10 flex items-center justify-center mb-4">
|
||||||
|
<i data-lucide="calendar" class="w-6 h-6 text-pink-400"></i>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Calendars</h3>
|
||||||
|
<p class="text-zinc-400">Book appointments, check availability, manage your calendar.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-6 card-glow transition">
|
||||||
|
<div class="w-12 h-12 rounded-xl bg-orange-500/10 flex items-center justify-center mb-4">
|
||||||
|
<i data-lucide="target" class="w-6 h-6 text-orange-400"></i>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Opportunities</h3>
|
||||||
|
<p class="text-zinc-400">Manage your pipeline. Move deals through stages automatically.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-6 card-glow transition">
|
||||||
|
<div class="w-12 h-12 rounded-xl bg-green-500/10 flex items-center justify-center mb-4">
|
||||||
|
<i data-lucide="workflow" class="w-6 h-6 text-green-400"></i>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Workflows</h3>
|
||||||
|
<p class="text-zinc-400">Trigger automations, manage workflow states, orchestrate actions.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-6 card-glow transition">
|
||||||
|
<div class="w-12 h-12 rounded-xl bg-cyan-500/10 flex items-center justify-center mb-4">
|
||||||
|
<i data-lucide="file-text" class="w-6 h-6 text-cyan-400"></i>
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Forms & Surveys</h3>
|
||||||
|
<p class="text-zinc-400">Read submissions, analyze responses, trigger follow-ups.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-12 text-center">
|
||||||
|
<p class="text-zinc-400 mb-4">+ 400 more endpoints including:</p>
|
||||||
|
<div class="flex flex-wrap justify-center gap-2">
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Invoices</span>
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Payments</span>
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Funnels</span>
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Websites</span>
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Social Planner</span>
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Reputation</span>
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Reporting</span>
|
||||||
|
<span class="px-3 py-1 bg-zinc-800 rounded-full text-sm">Memberships</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Pricing -->
|
||||||
|
<section id="pricing" class="py-20 border-t border-zinc-800/50">
|
||||||
|
<div class="max-w-6xl mx-auto px-6">
|
||||||
|
<div class="text-center mb-16">
|
||||||
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, transparent pricing</h2>
|
||||||
|
<p class="text-xl text-zinc-400">Start free. Scale as you grow.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
|
||||||
|
<!-- Free -->
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-8">
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Starter</h3>
|
||||||
|
<p class="text-zinc-400 mb-6">Try it out, no credit card</p>
|
||||||
|
<div class="mb-6">
|
||||||
|
<span class="text-4xl font-bold">$0</span>
|
||||||
|
<span class="text-zinc-500">/month</span>
|
||||||
|
</div>
|
||||||
|
<ul class="space-y-3 mb-8">
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
1 GHL location
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
1,000 API calls/month
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Community support
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
All 461 tools
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href="#" class="block w-full py-3 text-center bg-zinc-800 hover:bg-zinc-700 rounded-xl font-medium transition">
|
||||||
|
Get Started Free
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Pro -->
|
||||||
|
<div class="bg-gradient-to-b from-brand-500/10 to-transparent rounded-2xl border-2 border-brand-500/50 p-8 relative">
|
||||||
|
<div class="absolute -top-3 left-1/2 -translate-x-1/2 px-4 py-1 bg-brand-500 rounded-full text-sm font-medium">
|
||||||
|
Most Popular
|
||||||
|
</div>
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Pro</h3>
|
||||||
|
<p class="text-zinc-400 mb-6">For growing agencies</p>
|
||||||
|
<div class="mb-6">
|
||||||
|
<span class="text-4xl font-bold">$49</span>
|
||||||
|
<span class="text-zinc-500">/month</span>
|
||||||
|
</div>
|
||||||
|
<ul class="space-y-3 mb-8">
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
5 GHL locations
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
25,000 API calls/month
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Priority support
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Usage dashboard
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Webhook notifications
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href="#" class="block w-full py-3 text-center bg-brand-500 hover:bg-brand-600 rounded-xl font-medium transition">
|
||||||
|
Start 14-Day Trial
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Agency -->
|
||||||
|
<div class="bg-zinc-900/50 rounded-2xl border border-zinc-800 p-8">
|
||||||
|
<h3 class="text-xl font-semibold mb-2">Agency</h3>
|
||||||
|
<p class="text-zinc-400 mb-6">For serious operators</p>
|
||||||
|
<div class="mb-6">
|
||||||
|
<span class="text-4xl font-bold">$149</span>
|
||||||
|
<span class="text-zinc-500">/month</span>
|
||||||
|
</div>
|
||||||
|
<ul class="space-y-3 mb-8">
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Unlimited locations
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
100,000 API calls/month
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Dedicated support
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Team seats (5)
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Audit logs
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center gap-2 text-zinc-300">
|
||||||
|
<i data-lucide="check" class="w-4 h-4 text-green-400"></i>
|
||||||
|
Custom integrations
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a href="#" class="block w-full py-3 text-center bg-zinc-800 hover:bg-zinc-700 rounded-xl font-medium transition">
|
||||||
|
Contact Sales
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Open Source -->
|
||||||
|
<section class="py-20 border-t border-zinc-800/50">
|
||||||
|
<div class="max-w-6xl mx-auto px-6">
|
||||||
|
<div class="bg-zinc-900 rounded-3xl border border-zinc-800 p-8 md:p-12">
|
||||||
|
<div class="grid md:grid-cols-2 gap-12 items-center">
|
||||||
|
<div>
|
||||||
|
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-zinc-800 text-sm mb-6">
|
||||||
|
<i data-lucide="github" class="w-4 h-4"></i>
|
||||||
|
Open Source
|
||||||
|
</div>
|
||||||
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">
|
||||||
|
Self-host if you want.<br>
|
||||||
|
<span class="text-zinc-500">We won't stop you.</span>
|
||||||
|
</h2>
|
||||||
|
<p class="text-zinc-400 mb-6">
|
||||||
|
The entire MCP server is open source. Run it yourself, modify it, contribute back.
|
||||||
|
The hosted version just saves you the hassle.
|
||||||
|
</p>
|
||||||
|
<a href="https://github.com/yourusername/ghl-mcp" class="inline-flex items-center gap-2 text-brand-400 hover:text-brand-300 font-medium">
|
||||||
|
View on GitHub
|
||||||
|
<i data-lucide="arrow-right" class="w-4 h-4"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="bg-zinc-950 rounded-xl p-6 font-mono text-sm">
|
||||||
|
<div class="flex items-center gap-2 text-zinc-500 mb-4">
|
||||||
|
<span class="w-3 h-3 rounded-full bg-red-500"></span>
|
||||||
|
<span class="w-3 h-3 rounded-full bg-yellow-500"></span>
|
||||||
|
<span class="w-3 h-3 rounded-full bg-green-500"></span>
|
||||||
|
<span class="ml-2">Terminal</span>
|
||||||
|
</div>
|
||||||
|
<pre class="text-zinc-300"><code><span class="text-zinc-500">$</span> git clone github.com/ghl-connect/mcp
|
||||||
|
<span class="text-zinc-500">$</span> cd mcp && npm install
|
||||||
|
<span class="text-zinc-500">$</span> npm run build
|
||||||
|
<span class="text-zinc-500">$</span> node dist/server.js
|
||||||
|
|
||||||
|
<span class="text-green-400">✓ GHL MCP Server running</span>
|
||||||
|
<span class="text-green-400">✓ 461 tools loaded</span>
|
||||||
|
<span class="text-zinc-500">Listening on stdio...</span></code></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- FAQ -->
|
||||||
|
<section id="faq" class="py-20 border-t border-zinc-800/50">
|
||||||
|
<div class="max-w-3xl mx-auto px-6">
|
||||||
|
<div class="text-center mb-16">
|
||||||
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Frequently asked questions</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="space-y-4">
|
||||||
|
<details class="group bg-zinc-900/50 rounded-xl border border-zinc-800 p-6">
|
||||||
|
<summary class="flex items-center justify-between cursor-pointer list-none">
|
||||||
|
<span class="font-medium">What is MCP?</span>
|
||||||
|
<i data-lucide="chevron-down" class="w-5 h-5 text-zinc-400 group-open:rotate-180 transition"></i>
|
||||||
|
</summary>
|
||||||
|
<p class="mt-4 text-zinc-400">
|
||||||
|
MCP (Model Context Protocol) is a standard for connecting AI assistants to external tools and data.
|
||||||
|
It's supported by Claude, and lets AI actually take actions in your systems — not just chat about them.
|
||||||
|
</p>
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details class="group bg-zinc-900/50 rounded-xl border border-zinc-800 p-6">
|
||||||
|
<summary class="flex items-center justify-between cursor-pointer list-none">
|
||||||
|
<span class="font-medium">Do I need to install anything?</span>
|
||||||
|
<i data-lucide="chevron-down" class="w-5 h-5 text-zinc-400 group-open:rotate-180 transition"></i>
|
||||||
|
</summary>
|
||||||
|
<p class="mt-4 text-zinc-400">
|
||||||
|
For the hosted version, no. Just connect your GHL account via OAuth and add the MCP endpoint to your AI client (Claude Desktop, etc.).
|
||||||
|
If you self-host, you'll need Node.js.
|
||||||
|
</p>
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details class="group bg-zinc-900/50 rounded-xl border border-zinc-800 p-6">
|
||||||
|
<summary class="flex items-center justify-between cursor-pointer list-none">
|
||||||
|
<span class="font-medium">Is my data secure?</span>
|
||||||
|
<i data-lucide="chevron-down" class="w-5 h-5 text-zinc-400 group-open:rotate-180 transition"></i>
|
||||||
|
</summary>
|
||||||
|
<p class="mt-4 text-zinc-400">
|
||||||
|
Yes. We use OAuth 2.0 and never store your GHL API keys. Tokens are encrypted at rest and in transit.
|
||||||
|
You can revoke access anytime from your GHL settings.
|
||||||
|
</p>
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details class="group bg-zinc-900/50 rounded-xl border border-zinc-800 p-6">
|
||||||
|
<summary class="flex items-center justify-between cursor-pointer list-none">
|
||||||
|
<span class="font-medium">What happens if I hit my API limit?</span>
|
||||||
|
<i data-lucide="chevron-down" class="w-5 h-5 text-zinc-400 group-open:rotate-180 transition"></i>
|
||||||
|
</summary>
|
||||||
|
<p class="mt-4 text-zinc-400">
|
||||||
|
We'll notify you before you hit 80%. You can upgrade anytime, or your calls will be rate-limited (not blocked) until the next billing cycle.
|
||||||
|
</p>
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details class="group bg-zinc-900/50 rounded-xl border border-zinc-800 p-6">
|
||||||
|
<summary class="flex items-center justify-between cursor-pointer list-none">
|
||||||
|
<span class="font-medium">Can I use this with GPT or other AI models?</span>
|
||||||
|
<i data-lucide="chevron-down" class="w-5 h-5 text-zinc-400 group-open:rotate-180 transition"></i>
|
||||||
|
</summary>
|
||||||
|
<p class="mt-4 text-zinc-400">
|
||||||
|
MCP is currently best supported by Claude (Anthropic). GPT can use it via custom implementations.
|
||||||
|
As MCP adoption grows, more clients will support it natively.
|
||||||
|
</p>
|
||||||
|
</details>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- CTA -->
|
||||||
|
<section class="py-20 border-t border-zinc-800/50">
|
||||||
|
<div class="max-w-4xl mx-auto px-6 text-center">
|
||||||
|
<h2 class="text-3xl md:text-5xl font-bold mb-6">
|
||||||
|
Ready to AI-power your GHL?
|
||||||
|
</h2>
|
||||||
|
<p class="text-xl text-zinc-400 mb-10">
|
||||||
|
Join 500+ agencies already automating with GHL Connect.
|
||||||
|
</p>
|
||||||
|
<div class="flex flex-col sm:flex-row items-center justify-center gap-4">
|
||||||
|
<a href="#pricing" class="w-full sm:w-auto px-8 py-4 bg-brand-500 hover:bg-brand-600 rounded-xl font-semibold text-lg transition">
|
||||||
|
Start Free Trial
|
||||||
|
</a>
|
||||||
|
<a href="#" class="w-full sm:w-auto px-8 py-4 bg-zinc-800 hover:bg-zinc-700 rounded-xl font-semibold text-lg transition">
|
||||||
|
Book a Demo
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Footer -->
|
||||||
|
<footer class="border-t border-zinc-800/50 py-12">
|
||||||
|
<div class="max-w-6xl mx-auto px-6">
|
||||||
|
<div class="flex flex-col md:flex-row items-center justify-between gap-6">
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<div class="w-8 h-8 rounded-lg bg-gradient-to-br from-brand-500 to-purple-500 flex items-center justify-center">
|
||||||
|
<i data-lucide="zap" class="w-5 h-5 text-white"></i>
|
||||||
|
</div>
|
||||||
|
<span class="font-bold text-xl">GHL Connect</span>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-8 text-zinc-400">
|
||||||
|
<a href="#" class="hover:text-white transition">Privacy</a>
|
||||||
|
<a href="#" class="hover:text-white transition">Terms</a>
|
||||||
|
<a href="https://github.com/yourusername/ghl-mcp" class="hover:text-white transition">GitHub</a>
|
||||||
|
<a href="#" class="hover:text-white transition">Twitter</a>
|
||||||
|
</div>
|
||||||
|
<p class="text-zinc-500 text-sm">© 2026 GHL Connect. All rights reserved.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>lucide.createIcons();</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -1,5 +1,13 @@
|
|||||||
# 2026-01-25
|
# 2026-01-25
|
||||||
|
|
||||||
|
## GHL MCP Funnel Created
|
||||||
|
- Location: `~/.clawdbot/workspace/GHL-MCP-Funnel/`
|
||||||
|
- Business model: Open source + hosted (open core)
|
||||||
|
- Pricing tiers: Free ($0) / Pro ($49) / Agency ($149)
|
||||||
|
- Features: 461 GHL API tools, OAuth handling, multi-location
|
||||||
|
- Design: Dark mode, Vercel/Linear style, Tailwind CSS
|
||||||
|
- Jake loved it: "freaking amazing"
|
||||||
|
|
||||||
## Burton Method Discord Server Setup
|
## Burton Method Discord Server Setup
|
||||||
- Built out full channel structure for The Burton Method (LSAT edtech company) Discord server
|
- Built out full channel structure for The Burton Method (LSAT edtech company) Discord server
|
||||||
- Created 9 categories: Leadership, Finance, Marketing, Product, Engineering, Curriculum, Support, Operations, Team
|
- Created 9 categories: Leadership, Finance, Marketing, Product, Engineering, Curriculum, Support, Operations, Team
|
||||||
|
|||||||
7
skills/frontend-design/.clawdhub/origin.json
Normal file
7
skills/frontend-design/.clawdhub/origin.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"registry": "https://clawdhub.com",
|
||||||
|
"slug": "frontend-design",
|
||||||
|
"installedVersion": "1.0.0",
|
||||||
|
"installedAt": 1769325240064
|
||||||
|
}
|
||||||
190
skills/frontend-design/LICENSE.txt
Normal file
190
skills/frontend-design/LICENSE.txt
Normal file
@ -0,0 +1,190 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
Copyright 2024 Anthropic PBC
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
42
skills/frontend-design/SKILL.md
Normal file
42
skills/frontend-design/SKILL.md
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
---
|
||||||
|
name: frontend-design
|
||||||
|
description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
|
||||||
|
license: Complete terms in LICENSE.txt
|
||||||
|
---
|
||||||
|
|
||||||
|
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
|
||||||
|
|
||||||
|
The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
|
||||||
|
|
||||||
|
## Design Thinking
|
||||||
|
|
||||||
|
Before coding, understand the context and commit to a BOLD aesthetic direction:
|
||||||
|
- **Purpose**: What problem does this interface solve? Who uses it?
|
||||||
|
- **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
|
||||||
|
- **Constraints**: Technical requirements (framework, performance, accessibility).
|
||||||
|
- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?
|
||||||
|
|
||||||
|
**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
|
||||||
|
|
||||||
|
Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:
|
||||||
|
- Production-grade and functional
|
||||||
|
- Visually striking and memorable
|
||||||
|
- Cohesive with a clear aesthetic point-of-view
|
||||||
|
- Meticulously refined in every detail
|
||||||
|
|
||||||
|
## Frontend Aesthetics Guidelines
|
||||||
|
|
||||||
|
Focus on:
|
||||||
|
- **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
|
||||||
|
- **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.
|
||||||
|
- **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.
|
||||||
|
- **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
|
||||||
|
- **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.
|
||||||
|
|
||||||
|
NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.
|
||||||
|
|
||||||
|
Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.
|
||||||
|
|
||||||
|
**IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.
|
||||||
|
|
||||||
|
Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.
|
||||||
7
skills/superdesign/.clawdhub/origin.json
Normal file
7
skills/superdesign/.clawdhub/origin.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"registry": "https://clawdhub.com",
|
||||||
|
"slug": "superdesign",
|
||||||
|
"installedVersion": "1.0.0",
|
||||||
|
"installedAt": 1769325238790
|
||||||
|
}
|
||||||
213
skills/superdesign/SKILL.md
Normal file
213
skills/superdesign/SKILL.md
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
---
|
||||||
|
name: frontend-design
|
||||||
|
description: Expert frontend design guidelines for creating beautiful, modern UIs. Use when building landing pages, dashboards, or any user interface.
|
||||||
|
metadata: {"clawdbot":{"emoji":"🎨"}}
|
||||||
|
---
|
||||||
|
|
||||||
|
# Frontend Design Skill
|
||||||
|
|
||||||
|
Use this skill when creating UI components, landing pages, dashboards, or any frontend design work.
|
||||||
|
|
||||||
|
## Design Workflow
|
||||||
|
|
||||||
|
Follow this structured approach for UI design:
|
||||||
|
|
||||||
|
1. **Layout Design** — Think through component structure, create ASCII wireframes
|
||||||
|
2. **Theme Design** — Define colors, fonts, spacing, shadows
|
||||||
|
3. **Animation Design** — Plan micro-interactions and transitions
|
||||||
|
4. **Implementation** — Generate the actual code
|
||||||
|
|
||||||
|
### 1. Layout Design
|
||||||
|
|
||||||
|
Before coding, sketch the layout in ASCII format:
|
||||||
|
|
||||||
|
```
|
||||||
|
┌─────────────────────────────────────┐
|
||||||
|
│ HEADER / NAV BAR │
|
||||||
|
├─────────────────────────────────────┤
|
||||||
|
│ │
|
||||||
|
│ HERO SECTION │
|
||||||
|
│ (Title + CTA) │
|
||||||
|
│ │
|
||||||
|
├─────────────────────────────────────┤
|
||||||
|
│ FEATURE │ FEATURE │ FEATURE │
|
||||||
|
│ CARD │ CARD │ CARD │
|
||||||
|
├─────────────────────────────────────┤
|
||||||
|
│ FOOTER │
|
||||||
|
└─────────────────────────────────────┘
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Theme Guidelines
|
||||||
|
|
||||||
|
**Color Rules:**
|
||||||
|
- NEVER use generic bootstrap-style blue (#007bff) — it looks dated
|
||||||
|
- Prefer oklch() for modern color definitions
|
||||||
|
- Use semantic color variables (--primary, --secondary, --muted, etc.)
|
||||||
|
- Consider both light and dark mode from the start
|
||||||
|
|
||||||
|
**Font Selection (Google Fonts):**
|
||||||
|
```
|
||||||
|
Sans-serif: Inter, Roboto, Poppins, Montserrat, Outfit, Plus Jakarta Sans, DM Sans, Space Grotesk
|
||||||
|
Monospace: JetBrains Mono, Fira Code, Source Code Pro, IBM Plex Mono, Space Mono, Geist Mono
|
||||||
|
Serif: Merriweather, Playfair Display, Lora, Source Serif Pro, Libre Baskerville
|
||||||
|
Display: Architects Daughter, Oxanium
|
||||||
|
```
|
||||||
|
|
||||||
|
**Spacing & Shadows:**
|
||||||
|
- Use consistent spacing scale (0.25rem base)
|
||||||
|
- Shadows should be subtle — avoid heavy drop shadows
|
||||||
|
- Consider using oklch() for shadow colors too
|
||||||
|
|
||||||
|
### 3. Theme Patterns
|
||||||
|
|
||||||
|
**Modern Dark Mode (Vercel/Linear style):**
|
||||||
|
```css
|
||||||
|
:root {
|
||||||
|
--background: oklch(1 0 0);
|
||||||
|
--foreground: oklch(0.145 0 0);
|
||||||
|
--primary: oklch(0.205 0 0);
|
||||||
|
--primary-foreground: oklch(0.985 0 0);
|
||||||
|
--secondary: oklch(0.970 0 0);
|
||||||
|
--muted: oklch(0.970 0 0);
|
||||||
|
--muted-foreground: oklch(0.556 0 0);
|
||||||
|
--border: oklch(0.922 0 0);
|
||||||
|
--radius: 0.625rem;
|
||||||
|
--font-sans: Inter, system-ui, sans-serif;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
**Neo-Brutalism (90s web revival):**
|
||||||
|
```css
|
||||||
|
:root {
|
||||||
|
--background: oklch(1 0 0);
|
||||||
|
--foreground: oklch(0 0 0);
|
||||||
|
--primary: oklch(0.649 0.237 26.97);
|
||||||
|
--secondary: oklch(0.968 0.211 109.77);
|
||||||
|
--accent: oklch(0.564 0.241 260.82);
|
||||||
|
--border: oklch(0 0 0);
|
||||||
|
--radius: 0px;
|
||||||
|
--shadow: 4px 4px 0px 0px hsl(0 0% 0%);
|
||||||
|
--font-sans: DM Sans, sans-serif;
|
||||||
|
--font-mono: Space Mono, monospace;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
**Glassmorphism:**
|
||||||
|
```css
|
||||||
|
.glass {
|
||||||
|
background: rgba(255, 255, 255, 0.1);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
border-radius: 1rem;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Animation Guidelines
|
||||||
|
|
||||||
|
**Micro-syntax for planning:**
|
||||||
|
```
|
||||||
|
button: 150ms [S1→0.95→1] press
|
||||||
|
hover: 200ms [Y0→-2, shadow↗]
|
||||||
|
fadeIn: 400ms ease-out [Y+20→0, α0→1]
|
||||||
|
slideIn: 350ms ease-out [X-100→0, α0→1]
|
||||||
|
bounce: 600ms [S0.95→1.05→1]
|
||||||
|
```
|
||||||
|
|
||||||
|
**Common patterns:**
|
||||||
|
- Entry animations: 300-500ms, ease-out
|
||||||
|
- Hover states: 150-200ms
|
||||||
|
- Button press: 100-150ms
|
||||||
|
- Page transitions: 300-400ms
|
||||||
|
|
||||||
|
### 5. Implementation Rules
|
||||||
|
|
||||||
|
**Tailwind CSS:**
|
||||||
|
```html
|
||||||
|
<!-- Import via CDN for prototypes -->
|
||||||
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
|
```
|
||||||
|
|
||||||
|
**Flowbite (component library):**
|
||||||
|
```html
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/flowbite@2.0.0/dist/flowbite.min.css" rel="stylesheet">
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/flowbite@2.0.0/dist/flowbite.min.js"></script>
|
||||||
|
```
|
||||||
|
|
||||||
|
**Icons (Lucide):**
|
||||||
|
```html
|
||||||
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
||||||
|
<script>lucide.createIcons();</script>
|
||||||
|
```
|
||||||
|
|
||||||
|
**Images:**
|
||||||
|
- Use real placeholder services: Unsplash, placehold.co
|
||||||
|
- Never make up image URLs
|
||||||
|
- Example: `https://images.unsplash.com/photo-xxx?w=800&h=600`
|
||||||
|
|
||||||
|
### 6. Responsive Design
|
||||||
|
|
||||||
|
Always design mobile-first and responsive:
|
||||||
|
|
||||||
|
```css
|
||||||
|
/* Mobile first */
|
||||||
|
.container { padding: 1rem; }
|
||||||
|
|
||||||
|
/* Tablet */
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.container { padding: 2rem; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Desktop */
|
||||||
|
@media (min-width: 1024px) {
|
||||||
|
.container { max-width: 1200px; margin: 0 auto; }
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 7. Accessibility
|
||||||
|
|
||||||
|
- Use semantic HTML (header, main, nav, section, article)
|
||||||
|
- Include proper heading hierarchy (h1 → h2 → h3)
|
||||||
|
- Add aria-labels to interactive elements
|
||||||
|
- Ensure sufficient color contrast (4.5:1 minimum)
|
||||||
|
- Support keyboard navigation
|
||||||
|
|
||||||
|
### 8. Component Design Tips
|
||||||
|
|
||||||
|
**Cards:**
|
||||||
|
- Subtle shadows, not heavy drop shadows
|
||||||
|
- Consistent padding (p-4 to p-6)
|
||||||
|
- Hover state: slight lift + shadow increase
|
||||||
|
|
||||||
|
**Buttons:**
|
||||||
|
- Clear visual hierarchy (primary, secondary, ghost)
|
||||||
|
- Adequate touch targets (min 44x44px)
|
||||||
|
- Loading and disabled states
|
||||||
|
|
||||||
|
**Forms:**
|
||||||
|
- Clear labels above inputs
|
||||||
|
- Visible focus states
|
||||||
|
- Inline validation feedback
|
||||||
|
- Adequate spacing between fields
|
||||||
|
|
||||||
|
**Navigation:**
|
||||||
|
- Sticky header for long pages
|
||||||
|
- Clear active state indication
|
||||||
|
- Mobile-friendly hamburger menu
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Quick Reference
|
||||||
|
|
||||||
|
| Element | Recommendation |
|
||||||
|
|---------|---------------|
|
||||||
|
| Primary font | Inter, Outfit, DM Sans |
|
||||||
|
| Code font | JetBrains Mono, Fira Code |
|
||||||
|
| Border radius | 0.5rem - 1rem (modern), 0 (brutalist) |
|
||||||
|
| Shadow | Subtle, 1-2 layers max |
|
||||||
|
| Spacing | 4px base unit (0.25rem) |
|
||||||
|
| Animation | 150-400ms, ease-out |
|
||||||
|
| Colors | oklch() for modern, avoid generic blue |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Based on SuperDesign patterns — https://superdesign.dev*
|
||||||
Loading…
x
Reference in New Issue
Block a user