From 9e4134c63e56134959e5f30509748d19f5523f7c Mon Sep 17 00:00:00 2001 From: davida-ps Date: Mon, 9 Feb 2026 11:33:42 +0100 Subject: [PATCH] fix: adjust layout and spacing in AdvisoryCard and FeedSetup components (#15) * fix: adjust layout and spacing in AdvisoryCard and FeedSetup components * fix: update README to include Product Hunt promotion and badge --- README.md | 4 ++++ components/AdvisoryCard.tsx | 10 +++++----- components/Header.tsx | 2 +- pages/FeedSetup.tsx | 4 ++-- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 663574c..4c9199d 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@
+

We are featured on Product Hunt - upvote us and help us spread the word.

+ +ClawSec by Prompt Security - A Security Skill Suite for OpenClaw Agents | Product Hunt + ## Secure Your OpenClaw Bots with a Complete Security Skill Suite

Brought to you by Prompt Security, the Platform for AI Security

diff --git a/components/AdvisoryCard.tsx b/components/AdvisoryCard.tsx index e0517da..e1cb6b0 100644 --- a/components/AdvisoryCard.tsx +++ b/components/AdvisoryCard.tsx @@ -47,19 +47,19 @@ export const AdvisoryCard: React.FC = ({ advisory, formatDate return ( -
-
+
+
{advisory.severity} {advisory.cvss_score && ({advisory.cvss_score})} - + {getTypeLabel(advisory.type)}
- {formatDate(advisory.published)} + {formatDate(advisory.published)}

{advisory.id} diff --git a/components/Header.tsx b/components/Header.tsx index 3608962..5519e3e 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -52,7 +52,7 @@ export const Header: React.FC = () => { {desktopNav} {/* Mobile top bar */} -
+
diff --git a/pages/FeedSetup.tsx b/pages/FeedSetup.tsx index 40ae029..5b75090 100644 --- a/pages/FeedSetup.tsx +++ b/pages/FeedSetup.tsx @@ -102,7 +102,7 @@ export const FeedSetup: React.FC = () => {
) : ( <> -
+
{currentAdvisories.map((item) => ( ))} @@ -221,4 +221,4 @@ export const FeedSetup: React.FC = () => {
); -}; \ No newline at end of file +};