style: derez.ai is all lowercase — brand style fix (verb, not capitalized)

This commit is contained in:
Oliver
2026-06-13 15:02:53 -03:00
parent 9348985e2b
commit 9956000533
26 changed files with 100 additions and 100 deletions
+13 -13
View File
@@ -417,7 +417,7 @@
<a href="#options">Options</a>
<a href="#compare">Compare</a>
<a href="#quiz">Find Yours</a>
<a href="https://derez.ai" style="color:var(--accent)">Derez.ai →</a>
<a href="https://derez.ai" style="color:var(--accent)">derez.ai →</a>
</div>
</div>
</header>
@@ -470,7 +470,7 @@
</div>
<div class="option-card recommended">
<div class="option-icon purple"></div>
<h3>Derez.ai</h3>
<h3>derez.ai</h3>
<p>Managed Hermes hosting. Signup → purchase → prompt builder → working agent in ~10 Minutes. Backups, SSH, dashboard included.</p>
<div class="option-cost"><span class="mid">$1550 / month</span></div>
</div>
@@ -494,7 +494,7 @@
<th>Your Own PC</th>
<th>Dedicated PC</th>
<th>VPS</th>
<th>Derez.ai</th>
<th>derez.ai</th>
</tr>
</thead>
<tbody>
@@ -713,7 +713,7 @@
<!-- Result -->
<div class="quiz-result" id="quizResult">
<div class="result-icon" id="resultIcon"></div>
<div class="result-title" id="resultTitle">Derez.ai</div>
<div class="result-title" id="resultTitle">derez.ai</div>
<p class="result-desc" id="resultDesc">Your best fit based on your answers.</p>
<div class="reasoning-box" id="resultReasoning">
<h4>Why this fits you</h4>
@@ -722,7 +722,7 @@
<div class="result-actions">
<button class="btn btn-reset">Take Again</button>
<a href="#compare" class="btn btn-secondary">View Full Comparison</a>
<a href="https://derez.ai" class="btn btn-primary">Try Derez.ai →</a>
<a href="https://derez.ai" class="btn btn-primary">Try derez.ai →</a>
</div>
</div>
</div>
@@ -732,7 +732,7 @@
<footer>
<p>
Built for <a href="https://hermes-agent.nousresearch.com?utm_source=derez">Hermes Agent</a> by
<a href="https://derez.ai">Derez.ai</a> — managed Hermes hosting.
<a href="https://derez.ai">derez.ai</a> — managed Hermes hosting.
</p>
<p style="margin-top:8px;font-size:12px;">
Prices are estimates. Your actual costs may vary by provider and region.
@@ -849,9 +849,9 @@
// Beginners always get Derez
result = {
icon: '⚡',
title: 'Derez.ai',
title: 'derez.ai',
desc: 'Nothing to install, nothing to configure. You get a production-ready Hermes agent in ~10 Minutes.',
reasoning: 'As a beginner, you want the fastest path from signup to a working agent. Derez.ai handles SSH, backups, the dashboard, and updates so you don\'t have to learn server administration. The prompt builder gets you started immediately, and your agent is accessible from anywhere.'
reasoning: 'As a beginner, you want the fastest path from signup to a working agent. derez.ai handles SSH, backups, the dashboard, and updates so you don\'t have to learn server administration. The prompt builder gets you started immediately, and your agent is accessible from anywhere.'
};
} else if (level === 'advanced' && security === 'critical') {
result = {
@@ -870,9 +870,9 @@
} else if (security === 'important' && (budget === 'medium' || budget === 'high')) {
result = {
icon: '⚡',
title: 'Derez.ai',
title: 'derez.ai',
desc: 'Isolated instances with automated backups — security without the ops burden.',
reasoning: 'Derez.ai gives each client their own Linux instance with full backups, SSH access, and proper isolation. You get strong security without needing to be a DevOps expert. The mid-range pricing fits your budget, and you get a dashboard for management.'
reasoning: 'derez.ai gives each client their own Linux instance with full backups, SSH access, and proper isolation. You get strong security without needing to be a DevOps expert. The mid-range pricing fits your budget, and you get a dashboard for management.'
};
} else if (level === 'intermediate' && budget !== 'free') {
result = {
@@ -886,15 +886,15 @@
icon: '🖥️',
title: 'Your Own PC',
desc: 'Free, but requires some setup. Best for learning and prototyping.',
reasoning: 'You want to spend $0, which means using hardware you already own. Your Own PC works for development and testing, but keep in mind: your agent only runs while your computer is on. For a 24/7 agent you\'ll need either a VPS or Derez.ai. Consider this as a starting point to learn Hermes.'
reasoning: 'You want to spend $0, which means using hardware you already own. Your Own PC works for development and testing, but keep in mind: your agent only runs while your computer is on. For a 24/7 agent you\'ll need either a VPS or derez.ai. Consider this as a starting point to learn Hermes.'
};
} else {
// Default recommendation
result = {
icon: '⚡',
title: 'Derez.ai',
title: 'derez.ai',
desc: 'The balanced choice for most users. Managed, secure, and fairly priced.',
reasoning: 'Derez.ai combines the ease of managed hosting with proper isolation and backups. You get SSH access when you need it, a dashboard for daily management, and automated backups for peace of mind. At $1550/mo it\'s competitive with a mid-range VPS but saves you hours of setup time.'
reasoning: 'derez.ai combines the ease of managed hosting with proper isolation and backups. You get SSH access when you need it, a dashboard for daily management, and automated backups for peace of mind. At $1550/mo it\'s competitive with a mid-range VPS but saves you hours of setup time.'
};
}