diff --git a/src/pages/home/Home.module.scss b/src/pages/home/Home.module.scss
index 1210ee80..e57d85e1 100644
--- a/src/pages/home/Home.module.scss
+++ b/src/pages/home/Home.module.scss
@@ -11,15 +11,13 @@
}
}
- ul {
+ .actions {
+ gap: 8px;
margin: auto;
- display: block;
- font-size: 18px;
- text-align: center;
-
- li {
- list-style: lower-greek;
- }
+ display: flex;
+ width: fit-content;
+ align-items: center;
+ flex-direction: column;
}
}
diff --git a/src/pages/home/Home.tsx b/src/pages/home/Home.tsx
index a817fd31..1528edd3 100644
--- a/src/pages/home/Home.tsx
+++ b/src/pages/home/Home.tsx
@@ -1,4 +1,5 @@
import { Home as HomeIcon } from "@styled-icons/boxicons-solid";
+import Button from "../../components/ui/Button";
import { Link } from "react-router-dom";
import styles from "./Home.module.scss";
@@ -18,24 +19,23 @@ export default function Home() {