vibespot 0.4.4 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/conversion-guide.md +28 -0
- package/assets/design-guide.md +1 -0
- package/assets/hubspot-rules.md +16 -3
- package/assets/humanify-guide.md +459 -0
- package/dist/index.js +99 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/ui/chat.js +199 -55
- package/ui/dashboard.js +19 -0
- package/ui/field-editor.js +9 -7
- package/ui/index.html +58 -31
- package/ui/setup.js +117 -36
- package/ui/styles.css +678 -243
|
@@ -345,6 +345,34 @@ The base template loads CSS in this order (each can override the previous):
|
|
|
345
345
|
}
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
+
### Link & Button Hover Problem
|
|
349
|
+
|
|
350
|
+
HubSpot's theme applies default `a:hover` styles (blue color, underline, font change) that override your button/link styling.
|
|
351
|
+
|
|
352
|
+
**Solution**: For every button/link element, combine the base selector with `:hover`, `:focus`, and `:active` to lock down `color`, `text-decoration`, and `font-family`:
|
|
353
|
+
|
|
354
|
+
```css
|
|
355
|
+
/* Lock visual properties across ALL interaction states */
|
|
356
|
+
.my-module__cta,
|
|
357
|
+
.my-module__cta:hover,
|
|
358
|
+
.my-module__cta:focus,
|
|
359
|
+
.my-module__cta:active {
|
|
360
|
+
color: #ffffff;
|
|
361
|
+
text-decoration: none;
|
|
362
|
+
font-family: inherit;
|
|
363
|
+
background: var(--cta-bg);
|
|
364
|
+
border: none;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
/* Then add intentional hover effects separately */
|
|
368
|
+
.my-module__cta:hover {
|
|
369
|
+
transform: translateY(-2px);
|
|
370
|
+
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
|
|
371
|
+
}
|
|
372
|
+
```
|
|
373
|
+
|
|
374
|
+
**CRITICAL**: Every `<a>` tag styled as a button MUST have explicit `:hover` and `:focus` rules that re-declare `color`, `text-decoration: none`, and `font-family`. Without this, HubSpot's defaults will bleed through.
|
|
375
|
+
|
|
348
376
|
### Body Background Problem
|
|
349
377
|
|
|
350
378
|
The page wrapper structure is:
|
package/assets/design-guide.md
CHANGED
|
@@ -301,6 +301,7 @@ Every hero must have:
|
|
|
301
301
|
- Primary: filled, bold, with icon →
|
|
302
302
|
- Secondary: outlined or ghost style
|
|
303
303
|
- Always include hover + active + focus states
|
|
304
|
+
- CRITICAL: Re-declare color, text-decoration: none, and font-family on :hover/:focus/:active — HubSpot's theme overrides link hover styles
|
|
304
305
|
- Padding: `px-6 py-3` minimum (generous click area)
|
|
305
306
|
- Border radius: `rounded-lg` to `rounded-full`
|
|
306
307
|
|
package/assets/hubspot-rules.md
CHANGED
|
@@ -465,7 +465,20 @@ If your theme uses different names, use alternate_names in theme fields.json:
|
|
|
465
465
|
|
|
466
466
|
---
|
|
467
467
|
|
|
468
|
-
## 8.
|
|
468
|
+
## 8. Link & Button Hover Override
|
|
469
|
+
|
|
470
|
+
HubSpot's `theme-overrides.css` applies default `a:hover` styles that override your button styling with blue color, underlines, and font changes.
|
|
471
|
+
|
|
472
|
+
**Every `<a>` styled as a button MUST include `:hover`, `:focus`, and `:active` rules** that explicitly re-declare:
|
|
473
|
+
- `color` (your intended color, not HubSpot's blue)
|
|
474
|
+
- `text-decoration: none`
|
|
475
|
+
- `font-family: inherit`
|
|
476
|
+
|
|
477
|
+
Without these, HubSpot's defaults bleed through on hover/focus states even when base styles look correct.
|
|
478
|
+
|
|
479
|
+
---
|
|
480
|
+
|
|
481
|
+
## 9. Common Error Messages → Causes
|
|
469
482
|
|
|
470
483
|
| Error | Likely Cause |
|
|
471
484
|
|-------|-------------|
|
|
@@ -483,7 +496,7 @@ If your theme uses different names, use alternate_names in theme fields.json:
|
|
|
483
496
|
|
|
484
497
|
---
|
|
485
498
|
|
|
486
|
-
##
|
|
499
|
+
## 10. HubL Syntax Quick Reference
|
|
487
500
|
|
|
488
501
|
### Variables and Expressions
|
|
489
502
|
```
|
|
@@ -532,7 +545,7 @@ If your theme uses different names, use alternate_names in theme fields.json:
|
|
|
532
545
|
|
|
533
546
|
---
|
|
534
547
|
|
|
535
|
-
##
|
|
548
|
+
## 11. Pre-Upload Checklist
|
|
536
549
|
|
|
537
550
|
Before deploying any HubSpot CMS code, verify:
|
|
538
551
|
|
|
@@ -0,0 +1,459 @@
|
|
|
1
|
+
# HUMANIFY.md — Anti-AI Writing Rules for Landing Page Copy
|
|
2
|
+
|
|
3
|
+
> These rules strip the "AI smell" from generated landing page content.
|
|
4
|
+
> Every rule exists because it triggers trained pattern recognition in readers
|
|
5
|
+
> who now instinctively scan for AI-generated text. The goal is copy that
|
|
6
|
+
> reads like a sharp human copywriter wrote it on their second coffee.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 1. Banned Punctuation
|
|
11
|
+
|
|
12
|
+
### Em dashes (—)
|
|
13
|
+
```
|
|
14
|
+
NEVER use em dashes. This is the single biggest AI tell in 2025.
|
|
15
|
+
|
|
16
|
+
❌ "We build fast — so you don't have to wait"
|
|
17
|
+
✅ "We build fast. You don't wait."
|
|
18
|
+
✅ "We build fast, so you never wait."
|
|
19
|
+
✅ "We build fast (so you never wait)."
|
|
20
|
+
|
|
21
|
+
Replace with: periods, commas, parentheses, or just rewrite
|
|
22
|
+
the sentence as two sentences. Hyphens for compound words
|
|
23
|
+
are fine ("best-in-class"). En dashes for ranges are fine ("9–5").
|
|
24
|
+
Only the em dash (—) is banned.
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Semicolons in marketing copy
|
|
28
|
+
```
|
|
29
|
+
Semicolons feel academic, not conversational. On a landing page
|
|
30
|
+
they signal "a machine constructed this sentence."
|
|
31
|
+
|
|
32
|
+
❌ "We handle the tech; you handle the business."
|
|
33
|
+
✅ "We handle the tech. You handle the business."
|
|
34
|
+
|
|
35
|
+
Exception: pricing pages or feature comparison tables where
|
|
36
|
+
semicolons separate list items are fine.
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Excessive exclamation marks
|
|
40
|
+
```
|
|
41
|
+
One per page. Maximum. Zero is ideal for most B2B pages.
|
|
42
|
+
Two or more screams "AI trying to sound excited."
|
|
43
|
+
|
|
44
|
+
❌ "Get started today! It's free! You'll love it!"
|
|
45
|
+
✅ "Get started today. It's free."
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## 2. Banned Words
|
|
51
|
+
|
|
52
|
+
### Tier 1: Instant AI flags (NEVER use, no exceptions)
|
|
53
|
+
These words appear 10-50x more often in AI text than human text.
|
|
54
|
+
Readers have been trained to spot them.
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
delve / delving → look into, dig into, explore
|
|
58
|
+
tapestry → mix, blend, range
|
|
59
|
+
multifaceted → complex, layered
|
|
60
|
+
utilize / utilizing → use
|
|
61
|
+
leverage (as verb) → use, take advantage of
|
|
62
|
+
harness (as verb) → use, put to work
|
|
63
|
+
bolster → strengthen, boost
|
|
64
|
+
underscore → show, highlight
|
|
65
|
+
illuminate → show, explain, clarify
|
|
66
|
+
facilitate → help, make easier, enable
|
|
67
|
+
foster / fostering → build, encourage, grow
|
|
68
|
+
garner → earn, get, attract
|
|
69
|
+
pivotal → important, key, critical
|
|
70
|
+
crucial (overused by AI) → important, key, essential
|
|
71
|
+
commence → start, begin
|
|
72
|
+
endeavor → effort, attempt, try
|
|
73
|
+
myriad → many, a range of, lots of
|
|
74
|
+
plethora → many, plenty of
|
|
75
|
+
pertinent → relevant
|
|
76
|
+
aforementioned → (just name the thing again)
|
|
77
|
+
wherein → where, in which
|
|
78
|
+
henceforth → from now on
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Tier 2: AI-coded adjectives and nouns (avoid unless truly earned)
|
|
82
|
+
These are real words that AI has ruined through overuse.
|
|
83
|
+
Use them only when nothing else works, never as decoration.
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
comprehensive → thorough, complete, full
|
|
87
|
+
foundational → basic, core, fundamental
|
|
88
|
+
nuanced / nuance → subtle, detailed
|
|
89
|
+
landscape (abstract) → space, market, world, field
|
|
90
|
+
realm → area, field, world
|
|
91
|
+
beacon → (just cut it)
|
|
92
|
+
cornerstone → foundation, base, core
|
|
93
|
+
catalyst → trigger, spark, cause
|
|
94
|
+
paradigm → model, approach, shift
|
|
95
|
+
synergy → (just cut it)
|
|
96
|
+
robust → strong, solid, reliable
|
|
97
|
+
seamless / seamlessly → smooth, easy, without friction
|
|
98
|
+
cutting-edge → new, latest, modern, advanced
|
|
99
|
+
groundbreaking → new, first-of-its-kind
|
|
100
|
+
game-changer / game-changing → (describe the actual change)
|
|
101
|
+
revolutionary → (describe the actual revolution)
|
|
102
|
+
transformative → (describe the actual transformation)
|
|
103
|
+
innovative / innovation → new, original, clever
|
|
104
|
+
holistic → complete, full, whole-picture
|
|
105
|
+
bespoke → custom, tailored, made-for-you
|
|
106
|
+
curated → picked, selected, chosen
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### Tier 3: AI filler verbs (replace with concrete action)
|
|
110
|
+
```
|
|
111
|
+
empower / empowering → help, give, let, enable
|
|
112
|
+
elevate → improve, raise, boost
|
|
113
|
+
unlock → open, enable, get access to
|
|
114
|
+
streamline → simplify, speed up, cut steps
|
|
115
|
+
optimize → improve, tune, fix
|
|
116
|
+
spearhead → lead, run, drive
|
|
117
|
+
navigate (abstract) → handle, manage, deal with
|
|
118
|
+
embark → start, begin
|
|
119
|
+
cultivate → build, grow, develop
|
|
120
|
+
reimagine → redesign, rethink, rebuild
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## 3. Banned Phrases & Sentence Patterns
|
|
126
|
+
|
|
127
|
+
### Opening clichés (NEVER start a headline, subheadline, or paragraph with these)
|
|
128
|
+
```
|
|
129
|
+
❌ "In today's [fast-paced/ever-evolving/digital] world..."
|
|
130
|
+
❌ "In today's [industry] landscape..."
|
|
131
|
+
❌ "In an era of..."
|
|
132
|
+
❌ "In the realm of..."
|
|
133
|
+
❌ "Whether you're a [X] or a [Y]..."
|
|
134
|
+
❌ "Are you tired of [X]?"
|
|
135
|
+
❌ "Imagine a world where..."
|
|
136
|
+
❌ "Picture this:"
|
|
137
|
+
❌ "Here's the thing:"
|
|
138
|
+
❌ "Here's the deal:"
|
|
139
|
+
❌ "Let's face it:"
|
|
140
|
+
❌ "Look no further."
|
|
141
|
+
❌ "Say goodbye to [X] and hello to [Y]."
|
|
142
|
+
❌ "Gone are the days of..."
|
|
143
|
+
❌ "It's no secret that..."
|
|
144
|
+
❌ "It goes without saying..."
|
|
145
|
+
❌ "At its core..."
|
|
146
|
+
❌ "At the end of the day..."
|
|
147
|
+
❌ "The truth is..."
|
|
148
|
+
❌ "When it comes to [X]..."
|
|
149
|
+
|
|
150
|
+
Instead: Start with the specific claim, fact, or benefit. Jump straight in.
|
|
151
|
+
✅ "Your plumber shows up in 40 minutes. Every time."
|
|
152
|
+
✅ "Three taps. One landing page. No code."
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### The negation flip (AI's favorite "profound" structure)
|
|
156
|
+
```
|
|
157
|
+
❌ "It's not about X, it's about Y."
|
|
158
|
+
❌ "It's not just a [tool/product], it's a [transformation/revolution]."
|
|
159
|
+
❌ "It's not just X — it's Y."
|
|
160
|
+
|
|
161
|
+
This pattern is now the second most recognized AI tell after em dashes.
|
|
162
|
+
AI uses it because it sounds wise while saying almost nothing.
|
|
163
|
+
|
|
164
|
+
Instead: Just state Y. You don't need the "not X" setup.
|
|
165
|
+
❌ "It's not just a landing page builder. It's your growth engine."
|
|
166
|
+
✅ "Build landing pages that actually convert."
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
### Tricolon abuse (rule of three, overused)
|
|
170
|
+
```
|
|
171
|
+
AI loves grouping things in threes with escalating intensity:
|
|
172
|
+
❌ "Fast, reliable, and revolutionary."
|
|
173
|
+
❌ "Simple, powerful, and transformative."
|
|
174
|
+
❌ "Plan, build, and launch."
|
|
175
|
+
|
|
176
|
+
Threes are a valid rhetorical device, but AI uses them CONSTANTLY.
|
|
177
|
+
Use them once per page max. Vary with twos, fours, or unstructured lists.
|
|
178
|
+
|
|
179
|
+
✅ "Fast and reliable."
|
|
180
|
+
✅ "Simple enough for your intern. Powerful enough for your CMO."
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
### Rhetorical inflation (everything turned up to 11)
|
|
184
|
+
```
|
|
185
|
+
AI makes everything sound earth-shattering, even mundane features.
|
|
186
|
+
|
|
187
|
+
❌ "Revolutionize your workflow" (it's a form builder)
|
|
188
|
+
❌ "Transform the way you connect" (it's a contact page)
|
|
189
|
+
❌ "Unleash the power of your brand" (it's a logo section)
|
|
190
|
+
❌ "Redefine what's possible" (it's a pricing table)
|
|
191
|
+
|
|
192
|
+
Instead: Be specific about what actually happens.
|
|
193
|
+
✅ "Build forms in 2 minutes, not 2 hours."
|
|
194
|
+
✅ "Your contact page, live in three clicks."
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Filler transitions
|
|
198
|
+
```
|
|
199
|
+
❌ "Additionally,"
|
|
200
|
+
❌ "Furthermore,"
|
|
201
|
+
❌ "Moreover,"
|
|
202
|
+
❌ "It's important to note that..."
|
|
203
|
+
❌ "It's worth mentioning that..."
|
|
204
|
+
❌ "Notably,"
|
|
205
|
+
❌ "Interestingly,"
|
|
206
|
+
❌ "In essence,"
|
|
207
|
+
❌ "In summary,"
|
|
208
|
+
❌ "Needless to say,"
|
|
209
|
+
❌ "That being said,"
|
|
210
|
+
|
|
211
|
+
These add zero information on a landing page. Cut them entirely.
|
|
212
|
+
If two sentences need connecting, the connection should be obvious
|
|
213
|
+
from the content itself, or use a plain "And," "But," "So," or "Also."
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
### The fake-profound closer
|
|
217
|
+
```
|
|
218
|
+
❌ "The future of [X] is here."
|
|
219
|
+
❌ "The question isn't whether to [X], but when."
|
|
220
|
+
❌ "Ready to take the next step?"
|
|
221
|
+
❌ "Your journey starts here."
|
|
222
|
+
❌ "Join the revolution."
|
|
223
|
+
❌ "Experience the difference."
|
|
224
|
+
❌ "See what's possible."
|
|
225
|
+
|
|
226
|
+
Instead: Specific CTA with outcome.
|
|
227
|
+
✅ "Build your first page free. Takes 3 minutes."
|
|
228
|
+
✅ "Start now. Cancel anytime."
|
|
229
|
+
✅ "Book a 15-minute demo."
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## 4. Banned Structural Patterns
|
|
235
|
+
|
|
236
|
+
### The "X. Here's why." or "X. And it matters."
|
|
237
|
+
```
|
|
238
|
+
❌ "Your landing page is your first impression. And it matters."
|
|
239
|
+
❌ "Speed matters. Here's why."
|
|
240
|
+
|
|
241
|
+
AI loves these one-two punch patterns because they simulate
|
|
242
|
+
dramatic pacing. In practice they feel formulaic.
|
|
243
|
+
|
|
244
|
+
Instead: Combine into one punchy sentence, or just make the case.
|
|
245
|
+
✅ "First impressions close deals. Your landing page IS the first impression."
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
### Mirrored parallel structure (in every section)
|
|
249
|
+
```
|
|
250
|
+
AI tends to give every feature card or benefit the identical structure:
|
|
251
|
+
|
|
252
|
+
❌ "Build faster. Launch sooner. Grow quicker."
|
|
253
|
+
❌ "[Verb] your [noun]. [Verb] your [noun]. [Verb] your [noun]."
|
|
254
|
+
|
|
255
|
+
Vary the structures across cards. Mix questions, statements, and fragments.
|
|
256
|
+
✅ Card 1: "Live in 3 minutes."
|
|
257
|
+
✅ Card 2: "No developer needed."
|
|
258
|
+
✅ Card 3: "Looks like you hired a designer. You didn't."
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
### The "Challenges" / "Despite" pattern
|
|
262
|
+
```
|
|
263
|
+
❌ "Despite the challenges..."
|
|
264
|
+
❌ "While there are challenges, the future looks bright."
|
|
265
|
+
❌ "Challenges remain, but progress continues."
|
|
266
|
+
|
|
267
|
+
This is the AI equivalent of throat-clearing. On a landing page,
|
|
268
|
+
you never acknowledge your own challenges. You solve the visitor's.
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
### Symmetrical section structure
|
|
272
|
+
```
|
|
273
|
+
AI tends to make every section feel identical:
|
|
274
|
+
Uppercase label → Big headline → Subtitle → Grid of cards → CTA
|
|
275
|
+
|
|
276
|
+
Vary the rhythm. See CONTENT.md for section-level layout variation.
|
|
277
|
+
Not every section needs a subtitle. Not every section needs cards.
|
|
278
|
+
Some sections should just be one bold sentence and a button.
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
## 5. Positive Writing Rules (What TO Do)
|
|
284
|
+
|
|
285
|
+
### Be concrete, not abstract
|
|
286
|
+
```
|
|
287
|
+
AI defaults to abstraction because it hasn't lived in the real world.
|
|
288
|
+
The single most effective anti-AI move is specificity.
|
|
289
|
+
|
|
290
|
+
❌ "Our comprehensive solution streamlines your workflow."
|
|
291
|
+
✅ "Cut 4 hours off your weekly page-building time."
|
|
292
|
+
|
|
293
|
+
❌ "Fast, reliable service."
|
|
294
|
+
✅ "Average response time: 42 minutes."
|
|
295
|
+
|
|
296
|
+
❌ "Trusted by thousands of businesses."
|
|
297
|
+
✅ "Trusted by 2,847 HubSpot teams since 2024."
|
|
298
|
+
|
|
299
|
+
❌ "Affordable pricing."
|
|
300
|
+
✅ "Starts at €29/month. Cheaper than your Spotify family plan."
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
### Use plain, short words
|
|
304
|
+
```
|
|
305
|
+
Prefer the 4th-grade word over the SAT word.
|
|
306
|
+
Prefer Anglo-Saxon over Latin-derived words.
|
|
307
|
+
|
|
308
|
+
❌ utilize → ✅ use
|
|
309
|
+
❌ commence → ✅ start
|
|
310
|
+
❌ facilitate → ✅ help
|
|
311
|
+
❌ sufficient → ✅ enough
|
|
312
|
+
❌ subsequent → ✅ next
|
|
313
|
+
❌ implement → ✅ set up, add, build
|
|
314
|
+
❌ acquisition → ✅ getting, buying
|
|
315
|
+
❌ methodology → ✅ method, approach, way
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
### Vary sentence length aggressively
|
|
319
|
+
```
|
|
320
|
+
AI writes in a metronomic 15-20 word range. Every sentence roughly the same.
|
|
321
|
+
Humans don't do that.
|
|
322
|
+
|
|
323
|
+
Mix:
|
|
324
|
+
- Very short. (2-5 words.)
|
|
325
|
+
- Medium sentences that carry the argument forward. (10-15 words.)
|
|
326
|
+
- Occasional longer ones that stack up detail and create rhythm through
|
|
327
|
+
their length, pulling the reader along before landing on a point. (25+ words.)
|
|
328
|
+
|
|
329
|
+
Read your copy out loud. If you can't hear the rhythm change,
|
|
330
|
+
it's too uniform.
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
### Write like you'd explain it in a bar
|
|
334
|
+
```
|
|
335
|
+
The "bar test" from CONTENT.md applies to tone too.
|
|
336
|
+
Would a smart friend say this sentence out loud?
|
|
337
|
+
|
|
338
|
+
❌ "Our platform empowers businesses to seamlessly create
|
|
339
|
+
high-converting landing pages leveraging AI technology."
|
|
340
|
+
|
|
341
|
+
✅ "Tell us about your business. We'll build you a landing page.
|
|
342
|
+
Takes about two minutes."
|
|
343
|
+
|
|
344
|
+
If you wouldn't say it to someone holding a beer, rewrite it.
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
### Let sentences breathe
|
|
348
|
+
```
|
|
349
|
+
Not every sentence needs a modifier. Not every noun needs an adjective.
|
|
350
|
+
|
|
351
|
+
❌ "Our innovative, cutting-edge, AI-powered platform."
|
|
352
|
+
✅ "Our platform."
|
|
353
|
+
|
|
354
|
+
❌ "Beautiful, responsive, modern landing pages."
|
|
355
|
+
✅ "Landing pages that look good on every screen."
|
|
356
|
+
|
|
357
|
+
One adjective per noun, maximum. Zero is often better.
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
### Front-load the benefit
|
|
361
|
+
```
|
|
362
|
+
Humans scan. Put the payoff in the first 5 words, not the last 5.
|
|
363
|
+
|
|
364
|
+
❌ "With our advanced technology and years of experience,
|
|
365
|
+
we help you build pages faster."
|
|
366
|
+
✅ "Build pages faster. Our tech handles the rest."
|
|
367
|
+
|
|
368
|
+
❌ "By leveraging the power of AI, you can create
|
|
369
|
+
professional-looking landing pages in minutes."
|
|
370
|
+
✅ "Professional landing pages in minutes. AI does the heavy lifting."
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
### Make testimonials sound like real humans
|
|
374
|
+
```
|
|
375
|
+
AI testimonials are obvious because they're too polished and too positive.
|
|
376
|
+
|
|
377
|
+
❌ "This platform has been an absolute game-changer for our business.
|
|
378
|
+
The seamless experience and innovative features have transformed
|
|
379
|
+
our workflow entirely." — John D., CEO
|
|
380
|
+
|
|
381
|
+
✅ "We used to spend a full day building landing pages. Now my
|
|
382
|
+
marketing intern does it in her lunch break. Honestly didn't
|
|
383
|
+
think that was possible." — Sarah Chen, Head of Marketing, Boxflow
|
|
384
|
+
|
|
385
|
+
Rules for believable testimonials:
|
|
386
|
+
- Include a specific problem that was solved
|
|
387
|
+
- Include a concrete detail (time saved, money saved, specific task)
|
|
388
|
+
- Keep them slightly imperfect in structure (fragments OK)
|
|
389
|
+
- Names should be full names, not "John D."
|
|
390
|
+
- Roles should be specific, not just "CEO"
|
|
391
|
+
- Allow mild hedging ("honestly didn't think", "I was skeptical")
|
|
392
|
+
- Vary length: some short (1 sentence), some longer (2-3 sentences)
|
|
393
|
+
- Never start with "This product is..." — start with the person's situation
|
|
394
|
+
```
|
|
395
|
+
|
|
396
|
+
---
|
|
397
|
+
|
|
398
|
+
## 6. Quick-Reference Banned Word List (for automated scanning)
|
|
399
|
+
|
|
400
|
+
Copy this list into a linter or post-processing check. If any of these
|
|
401
|
+
appear in generated copy, flag for rewrite:
|
|
402
|
+
|
|
403
|
+
```
|
|
404
|
+
HARD BANNED (always rewrite):
|
|
405
|
+
delve, delving, tapestry, multifaceted, utilize, utilizing,
|
|
406
|
+
harness, harnessing, bolster, underscore, illuminate, facilitate,
|
|
407
|
+
fostering, garner, pivotal, commence, endeavor, myriad, plethora,
|
|
408
|
+
pertinent, aforementioned, wherein, henceforth, beacon, synergy,
|
|
409
|
+
paradigm, bespoke, holistic, spearhead, embark, reimagine,
|
|
410
|
+
cultivate, cornerstone
|
|
411
|
+
|
|
412
|
+
SOFT BANNED (rewrite unless truly specific and earned):
|
|
413
|
+
seamless, seamlessly, cutting-edge, groundbreaking, game-changer,
|
|
414
|
+
game-changing, revolutionary, transformative, innovative, innovation,
|
|
415
|
+
robust, comprehensive, foundational, nuanced, landscape (abstract),
|
|
416
|
+
realm, catalyst, empower, empowering, elevate, unlock, streamline,
|
|
417
|
+
optimize, curated, navigate (abstract)
|
|
418
|
+
|
|
419
|
+
BANNED PUNCTUATION:
|
|
420
|
+
— (em dash)
|
|
421
|
+
|
|
422
|
+
BANNED OPENERS (any sentence/heading starting with):
|
|
423
|
+
"In today's", "In an era", "In the realm", "Whether you're",
|
|
424
|
+
"Are you tired", "Imagine a world", "Picture this", "Here's the thing",
|
|
425
|
+
"Here's the deal", "Let's face it", "Look no further",
|
|
426
|
+
"Say goodbye to", "Gone are the days", "It's no secret",
|
|
427
|
+
"At its core", "At the end of the day", "When it comes to"
|
|
428
|
+
|
|
429
|
+
BANNED CLOSERS (any section/page ending with):
|
|
430
|
+
"The future of [X] is here", "Your journey starts here",
|
|
431
|
+
"Join the revolution", "Experience the difference",
|
|
432
|
+
"See what's possible", "Ready to take the next step",
|
|
433
|
+
"The question isn't whether"
|
|
434
|
+
|
|
435
|
+
BANNED STRUCTURES:
|
|
436
|
+
"It's not about X, it's about Y"
|
|
437
|
+
"It's not just X, it's Y"
|
|
438
|
+
"[X]. Here's why."
|
|
439
|
+
"[X]. And it matters."
|
|
440
|
+
"Despite the challenges"
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
---
|
|
444
|
+
|
|
445
|
+
## 7. The Final Sniff Test
|
|
446
|
+
|
|
447
|
+
After generating any page copy, read it once and ask:
|
|
448
|
+
|
|
449
|
+
1. **Could I picture a specific human saying this out loud?** If not, rewrite.
|
|
450
|
+
2. **Can I see/touch/count the thing being described?** If not, make it concrete.
|
|
451
|
+
3. **Does every sentence sound roughly the same length?** If yes, vary it.
|
|
452
|
+
4. **Are there more than zero em dashes?** If yes, remove them all.
|
|
453
|
+
5. **Does the page have any word from the HARD BANNED list?** If yes, swap it.
|
|
454
|
+
6. **Do the testimonials sound like they were written by the same person?** If yes, rewrite with different voices, lengths, and structures.
|
|
455
|
+
7. **Would a HubSpot marketer on their third coffee read this and think "yeah, that sounds like us"?** That's the bar.
|
|
456
|
+
|
|
457
|
+
---
|
|
458
|
+
|
|
459
|
+
*These rules work best alongside CONTENT.md (for content density and structure) and CLAUDE.md (for visual design). Together they ensure vibeSpot outputs pages that look AND read like a human team built them.*
|