diff --git a/index.html b/index.html
index a52ab900..08b12b08 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
-
diff --git a/src/components/Header.jsx b/src/components/Header.jsx
index ed27af82..425600ad 100644
--- a/src/components/Header.jsx
+++ b/src/components/Header.jsx
@@ -1,3 +1,11 @@
+import { Button } from "../reusables/Button";
+import "../App.css";
+
export const Header = () => {
- return
Header
;
+ return (
+
+ Header
+
+
+ );
};
diff --git a/src/fonts/Argue.otf b/src/fonts/Argue.otf
new file mode 100644
index 00000000..0898e58c
Binary files /dev/null and b/src/fonts/Argue.otf differ
diff --git a/src/fonts/Gerbera-Bold.otf b/src/fonts/Gerbera-Bold.otf
new file mode 100644
index 00000000..c0b93a66
Binary files /dev/null and b/src/fonts/Gerbera-Bold.otf differ
diff --git a/src/reusables/Button.jsx b/src/reusables/Button.jsx
index ba85e761..1bdf2d61 100644
--- a/src/reusables/Button.jsx
+++ b/src/reusables/Button.jsx
@@ -1,3 +1,14 @@
-export const Button = () => {
- return
Button
;
-};
+import styled from "styled-components";
+
+export const Button = styled.button`
+ background-color: var(--primary-prpl);
+ border-radius: 8px;
+ border: none;
+ color: var(--primary-white);
+ font-size: 30px;
+ padding: 8px 16px;
+
+ &:hover {
+ background-color: var(--hover-prpl);
+ }
+`;