From 1d548f5efd631823ab4e9b678d74764b2bfbae17 Mon Sep 17 00:00:00 2001 From: Aditya Mathur <57684218+MathurAditya724@users.noreply.github.com> Date: Sun, 12 Nov 2023 02:13:46 +0530 Subject: [PATCH] fix: added spacing below the sponsors text (#1020) Resolved Issue #1016 - [x] added some margin above each sponsor component to make them evenly spaced --- src/components/Sponsors.tsx | 185 ++++++++++++++++++------------------ 1 file changed, 93 insertions(+), 92 deletions(-) diff --git a/src/components/Sponsors.tsx b/src/components/Sponsors.tsx index 52c6a5b6..0cdcfe79 100644 --- a/src/components/Sponsors.tsx +++ b/src/components/Sponsors.tsx @@ -1,106 +1,107 @@ import React from 'react'; +const SPONSORS = [ + + + + + , + + + + + + + + + + + + + + + + + + + , +]; + export default function Sponsors() { return ( - <> -
+
+ {SPONSORS.map((sponsor, index) => (
- - - - - -
- -
- - - - - - - - - - - - - - - - - - - - + {sponsor}
-
- + ))} +
); }