refactor: add spacing divider below NodeProducts bottom border

- Removed bg-[#121212] from bottom border div
- Added transparent spacing divider with py-6 padding and gray-800 side borders
- Updated comment to indicate spacing addition
This commit is contained in:
2025-11-19 12:33:28 +01:00
parent 3df73ec418
commit a9f53224cf

View File

@@ -222,9 +222,9 @@ export function NodeProducts() {
</div> </div>
</div> </div>
{/* ✅ Bottom horizontal line with spacing */}
{/* Bottom border */} <div className="w-full border-b border-gray-800" />
<div className="w-full border-b border-gray-800 bg-[#121212]" /> <div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-800"></div>
</section> </section>
); );
} }