diff --git a/client/src/components/Badges.jsx b/client/src/components/Badges.jsx
index c63f077..91aae1b 100644
--- a/client/src/components/Badges.jsx
+++ b/client/src/components/Badges.jsx
@@ -1,5 +1,6 @@
import WorkspacePremiumIcon from '@mui/icons-material/WorkspacePremium';
import { Grid, Tooltip, Typography } from '@mui/material';
+import { Stack } from '@material-ui/core';
function Badge({
title = 'Good Question',
@@ -31,16 +32,20 @@ export default function Badges({ badges: { obtained, unobtained } }) {
return (
<>
-
- Obtained Badges
-
- {badgesGrid(obtained)}
+
+
+ Obtained Badges
+
+ {badgesGrid(obtained)}
+
-
- Unobtained Badges
-
- {badgesGrid(unobtained)}
+
+
+ Unobtained Badges
+
+ {badgesGrid(unobtained)}
+
>
);