diff --git a/img/hamburger_icon.svg b/img/hamburger_icon.svg
new file mode 100644
index 00000000..7f34c793
--- /dev/null
+++ b/img/hamburger_icon.svg
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/img/wordmark.svg b/img/wordmark.svg
new file mode 100644
index 00000000..0d476b41
--- /dev/null
+++ b/img/wordmark.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/components/global/Button/Button.module.scss b/src/components/global/Button/Button.module.scss
index 4ea42835..b6c99fe4 100644
--- a/src/components/global/Button/Button.module.scss
+++ b/src/components/global/Button/Button.module.scss
@@ -26,6 +26,18 @@
width: fit-content;
padding: 0.8rem 1.6rem;
+ &:hover {
+ --btn-background: var(--gray-05);
+ }
+ }
+ &.logout {
+ --btn-background: transparent;
+ --btn-text-color: var(--red-01);
+ border: solid 2px var(--red-01);
+ border-radius: 10px;
+ width: fit-content;
+ padding: 0.8rem 1.6rem;
+
&:hover {
--btn-background: var(--gray-05);
}
diff --git a/src/components/global/Button/Button.tsx b/src/components/global/Button/Button.tsx
index 00c366d8..2b1787aa 100644
--- a/src/components/global/Button/Button.tsx
+++ b/src/components/global/Button/Button.tsx
@@ -14,7 +14,10 @@ export default function Button({
let classesNames = `${styles.btn}`;
if (type === 'secondary') {
classesNames += ` ${styles.secondary}`;
+ } else if (type === 'logout') {
+ classesNames += ` ${styles.logout}`;
}
+
return (