-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsocial-preview.html
More file actions
220 lines (217 loc) · 5.67 KB
/
social-preview.html
File metadata and controls
220 lines (217 loc) · 5.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1280px;
height: 640px;
background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 40%, #0d1b2a 100%);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
color: #fff;
display: flex;
overflow: hidden;
position: relative;
}
.left {
flex: 1;
padding: 60px 50px;
display: flex;
flex-direction: column;
justify-content: center;
z-index: 2;
}
.badge {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
border: 1px solid rgba(99, 102, 241, 0.4);
border-radius: 20px;
padding: 6px 16px;
font-size: 14px;
color: #818cf8;
letter-spacing: 0.5px;
margin-bottom: 20px;
width: fit-content;
}
h1 {
font-size: 52px;
font-weight: 800;
line-height: 1.15;
margin-bottom: 16px;
background: linear-gradient(90deg, #fff 0%, #c7d2fe 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle {
font-size: 20px;
color: #94a3b8;
line-height: 1.5;
margin-bottom: 28px;
max-width: 500px;
}
.stats {
display: flex;
gap: 24px;
}
.stat {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
padding: 12px 20px;
text-align: center;
}
.stat-num {
font-size: 28px;
font-weight: 700;
color: #818cf8;
}
.stat-label {
font-size: 12px;
color: #64748b;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 2px;
}
.right {
width: 480px;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.arch-box {
background: rgba(15, 23, 42, 0.8);
border: 1px solid rgba(99, 102, 241, 0.3);
border-radius: 16px;
padding: 24px 28px;
font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 13px;
line-height: 1.7;
box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
width: 400px;
}
.arch-header {
color: #818cf8;
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
}
.arch-line { color: #475569; }
.arch-key { color: #38bdf8; }
.arch-val { color: #94a3b8; }
.arch-highlight { color: #34d399; }
.arch-separator {
border-top: 1px solid rgba(99, 102, 241, 0.2);
margin: 8px 0;
}
/* Background decorations */
.glow1 {
position: absolute;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
top: -100px;
right: 200px;
z-index: 1;
}
.glow2 {
position: absolute;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
bottom: -50px;
left: 100px;
z-index: 1;
}
.footer {
position: absolute;
bottom: 24px;
left: 50px;
display: flex;
align-items: center;
gap: 8px;
z-index: 2;
}
.footer-text {
font-size: 14px;
color: #475569;
}
.footer-brand {
color: #818cf8;
font-weight: 600;
}
.channels {
display: flex;
gap: 10px;
margin-top: 4px;
}
.channel {
background: rgba(52, 211, 153, 0.1);
border: 1px solid rgba(52, 211, 153, 0.3);
border-radius: 6px;
padding: 3px 10px;
font-size: 12px;
color: #34d399;
}
</style>
</head>
<body>
<div class="glow1"></div>
<div class="glow2"></div>
<div class="left">
<div class="badge">OPEN SOURCE · MIT LICENSE</div>
<h1>B2B SDR<br>Agent Template</h1>
<div class="subtitle">AI-powered sales automation for B2B export. Full pipeline from lead capture to deal closing.</div>
<div class="channels">
<span class="channel">WhatsApp</span>
<span class="channel">Telegram</span>
<span class="channel">Email</span>
</div>
<div style="height: 20px"></div>
<div class="stats">
<div class="stat">
<div class="stat-num">10</div>
<div class="stat-label">Pipeline Stages</div>
</div>
<div class="stat">
<div class="stat-num">13</div>
<div class="stat-label">Cron Jobs</div>
</div>
<div class="stat">
<div class="stat-num">7</div>
<div class="stat-label">Context Layers</div>
</div>
<div class="stat">
<div class="stat-num">8</div>
<div class="stat-label">Languages</div>
</div>
</div>
</div>
<div class="right">
<div class="arch-box">
<div class="arch-header">// 7-Layer Context System</div>
<div><span class="arch-key">IDENTITY</span> <span class="arch-val">Company, role, pipeline</span></div>
<div><span class="arch-key">SOUL</span> <span class="arch-val">Personality, values, rules</span></div>
<div><span class="arch-key">AGENTS</span> <span class="arch-highlight">10-stage sales workflow</span></div>
<div><span class="arch-key">USER</span> <span class="arch-val">ICP scoring, competitors</span></div>
<div><span class="arch-key">HEARTBEAT</span> <span class="arch-val">Pipeline inspection</span></div>
<div><span class="arch-key">MEMORY</span> <span class="arch-highlight">3-engine architecture</span></div>
<div><span class="arch-key">TOOLS</span> <span class="arch-val">CRM, Jina AI, Gmail</span></div>
<div class="arch-separator"></div>
<div><span class="arch-val">Dynamic ICP Scoring</span></div>
<div><span class="arch-val">Multi-Channel Orchestration</span></div>
<div><span class="arch-val">Timezone-Aware Scheduling</span></div>
<div class="arch-separator"></div>
<div style="text-align: center; color: #818cf8; font-size: 12px; margin-top: 4px;">
Built on OpenClaw · Powered by AI
</div>
</div>
</div>
<div class="footer">
<span class="footer-text">Built by</span>
<span class="footer-brand">PulseAgent</span>
<span class="footer-text">· github.com/iPythoning/b2b-sdr-agent-template</span>
</div>
</body>
</html>