diff --git a/src/components/user/resources/Hackpack.tsx b/src/components/user/resources/Hackpack.tsx index 3261fff2a..4f8a5febf 100644 --- a/src/components/user/resources/Hackpack.tsx +++ b/src/components/user/resources/Hackpack.tsx @@ -11,42 +11,39 @@ type props = { const Hackpack = ({ text, techs, link, description }: props) => { return ( - -
-
-
-

- {text} -

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

{description}

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

{description}

+
); };