diff --git a/index.html b/index.html
index 88120dd9..7064e807 100644
--- a/index.html
+++ b/index.html
@@ -2,7 +2,7 @@
-
+
판다마켓
diff --git a/public/images/common/ic_plus.svg b/public/images/common/ic_plus.svg
new file mode 100644
index 00000000..5bb9abf5
--- /dev/null
+++ b/public/images/common/ic_plus.svg
@@ -0,0 +1,4 @@
+
diff --git a/public/images/common/ic_tag_x.svg b/public/images/common/ic_tag_x.svg
new file mode 100644
index 00000000..1daecf70
--- /dev/null
+++ b/public/images/common/ic_tag_x.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/components/Common/CommonButton.jsx b/src/components/Common/CommonButton.jsx
index c8a18576..ec3c4d59 100644
--- a/src/components/Common/CommonButton.jsx
+++ b/src/components/Common/CommonButton.jsx
@@ -1,17 +1,17 @@
import styles from './styles/CommonButton.module.css';
import { useNavigate, useLocation } from 'react-router-dom';
-const CommonButton = ({buttonType, path=""}) => {
+const CommonButton = ({buttonType, path="", disabled=false}) => {
const navigate = useNavigate();
const location = useLocation();
const currentPath = location.pathname;
- console.log(currentPath);
const isItems = currentPath === "/items" ? styles.isItems : "";
return (
diff --git a/src/components/Common/styles/CommonButton.module.css b/src/components/Common/styles/CommonButton.module.css
index d6a788ac..d0ecef1f 100644
--- a/src/components/Common/styles/CommonButton.module.css
+++ b/src/components/Common/styles/CommonButton.module.css
@@ -11,6 +11,10 @@
background-color: var(--blue);
color: #fff;
}
+ &:disabled {
+ background-color: var(--gray400);
+ cursor: not-allowed;
+ }
}
@media (max-width: 768px) {
diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx
index e2a4007a..f1e7a0ac 100644
--- a/src/components/Header/Header.jsx
+++ b/src/components/Header/Header.jsx
@@ -6,7 +6,8 @@ const Header = () => {
const navigate = useNavigate();
const location = useLocation();
return (
-
+