Fix/UI phunt (#16)

* fix: update hero section heading for clarity on OpenClaw security

* fix: add Product Hunt promotion section to Home page
This commit is contained in:
davida-ps
2026-02-09 12:18:30 +01:00
committed by GitHub
parent 9e4134c63e
commit 1ff41b6127
+20 -1
View File
@@ -44,7 +44,7 @@ export const Home: React.FC = () => {
{/* Hero Section */}
<section className="text-center space-y-6 max-w-3xl mx-auto mb-12 md:mb-16">
<h2 className="text-3xl md:text-4xl tracking-tight text-white">
Harden your <span className="text-clawd-accent">OpenClaw</span> security posture
Secure your <span className="text-clawd-accent">OpenClaw</span> agents
</h2>
<p className="text-lg md:text-xl text-gray-400 leading-relaxed">
A complete security skill suite for OpenClaw's family of agents. Protect your{' '}
@@ -220,6 +220,25 @@ export const Home: React.FC = () => {
</div>
</section>
<section className="text-center mb-12">
<p className="text-sm text-gray-400 mb-3">
We are featured on Product Hunt - upvote us and help us spread the word.
</p>
<a
href="https://www.producthunt.com/products/clawsec-by-prompt-security?embed=true&utm_source=badge-featured&utm_medium=badge&utm_campaign=badge-clawsec-by-prompt-security-2"
target="_blank"
rel="noopener noreferrer"
className="inline-block"
>
<img
alt="ClawSec by Prompt Security - A Security Skill Suite for OpenClaw Agents | Product Hunt"
width="250"
height="54"
src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1076044&theme=light&t=1770632815547"
/>
</a>
</section>
<Footer />
</div>
);