feat(landing): warm up the contact CTAs (#412)

Give the contact calls-to-action a friendlier, more human voice. The nav
"Contact" link and the FAQ "Contact Us" button become "Talk to a human",
and the Enterprise pricing "Contact Sales" becomes "Let's talk". All links
still point to /contact; only the labels change.

Claude-Session: https://claude.ai/code/session_01MbQGV1k1mneFidgGyDnmDQ
This commit is contained in:
SnapOtter
2026-07-03 15:49:56 +08:00
committed by GitHub
parent 5500facc5d
commit 3d4a84d068
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ const links = [
{ label: "Pricing", href: "/#pricing" },
{ label: "Alternatives", href: "/alternatives" },
{ label: "Docs", href: "https://docs.snapotter.com", external: true },
{ label: "Contact", href: "/contact" },
{ label: "Talk to a human", href: "/contact" },
];
---
+1 -1
View File
@@ -79,7 +79,7 @@ const checkIcon =
href="/contact"
class="btn-primary mt-6 block rounded-xl px-6 py-3 text-center text-sm font-semibold"
>
Contact Sales
Let's talk
</a>
<ul class="mt-8 space-y-3">
+1 -1
View File
@@ -115,7 +115,7 @@ const breadcrumbJsonLd = {
<h2 class="font-display text-xl font-semibold">Still have questions?</h2>
<p class="mt-2 text-sm text-muted">Reach out via email or join our community.</p>
<div class="mt-6 flex flex-col items-center gap-3 sm:flex-row sm:justify-center">
<a href="/contact" class="btn-primary rounded-lg px-6 py-2.5 text-sm font-semibold">Contact Us</a>
<a href="/contact" class="btn-primary rounded-lg px-6 py-2.5 text-sm font-semibold">Talk to a human</a>
<a href="https://discord.gg/hr3s7HPUsr" target="_blank" rel="noopener noreferrer" class="rounded-lg border border-border px-6 py-2.5 text-sm font-semibold transition-colors hover:bg-background-alt">Join Discord</a>
</div>
</div>