From 72cb79d3bbdaff262d7183c6b9dd5b3fd54fe39d Mon Sep 17 00:00:00 2001 From: Shadow Date: Sun, 15 Sep 2024 23:34:22 -0700 Subject: [PATCH] when you click on card link works --- src/components/user/resources/Hackpack.tsx | 58 ++++++++++++---------- 1 file changed, 32 insertions(+), 26 deletions(-) diff --git a/src/components/user/resources/Hackpack.tsx b/src/components/user/resources/Hackpack.tsx index 07c46e699..3261fff2a 100644 --- a/src/components/user/resources/Hackpack.tsx +++ b/src/components/user/resources/Hackpack.tsx @@ -11,36 +11,42 @@ type props = { const Hackpack = ({ text, techs, link, description }: props) => { return ( -
- -

- {text} -

- - + +
+
+
+

+ {text} +

+ -
- {techs.map((tech, index) => ( -
-
- {TECHSTACKS[tech]} +
+ {techs.map((tech, index) => ( +
+
+ {TECHSTACKS[tech]} +
+ {tech} +
+ ))}
- {tech} +

{description}

- ))} +
- -

{description}

-
+ ); };