From 791216433ccca89cf09944690771720f9ee5dda1 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Tue, 18 Nov 2025 14:45:29 +0100 Subject: [PATCH] refactor: add bottom border and spacing to AgentBento section - Added horizontal border line with border-gray-800 styling - Added transparent spacer div with py-6 padding and max-w-7xl container - Applied vertical borders (left/right only) to spacer using border-t-0 border-b-0 --- src/pages/agents/AgentBento.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/agents/AgentBento.tsx b/src/pages/agents/AgentBento.tsx index 9a37bde..fdcd5c2 100644 --- a/src/pages/agents/AgentBento.tsx +++ b/src/pages/agents/AgentBento.tsx @@ -161,6 +161,9 @@ export function AgentBento() { ))} + {/* ✅ Bottom horizontal line with spacing */} +
+
); }