diff --git a/src/App.jsx b/src/App.jsx
index 1af12b58..56770dcc 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -39,21 +39,18 @@ const Content = styled.div`
const Layout = () => {
const location = useLocation();
+ const excludePaths = [/^\/login/, /^\/signup/, /^\/agree\/[0-1]/];
+
+ const isExcludedPath = excludePaths.some((regex) =>
+ regex.test(location.pathname)
+ );
return (
- {location.pathname === "/login" ||
- location.pathname === "/signup" ||
- location.pathname === "/signup/custom" ||
- location.pathname === "/agree/0" ||
- location.pathname === "/agree/1" ? (
- <>>
- ) : (
-
- )}
+ {isExcludedPath ? <>> : }
diff --git a/src/components/DateRangeCalendar/DateRangeCalendar.jsx b/src/components/DateRangeCalendar/DateRangeCalendar.jsx
index 870ed522..729cecd5 100644
--- a/src/components/DateRangeCalendar/DateRangeCalendar.jsx
+++ b/src/components/DateRangeCalendar/DateRangeCalendar.jsx
@@ -130,11 +130,6 @@ const DateRangeCalendar = () => {
} else {
console.log("No date selected");
}
-
- setSelectedStartDate(formattedStartDate);
- setSelectedEndDate(formattedEndDate);
- setIsCalendarVisible(false);
- setIsCheckVisible(true);
};
return (
diff --git a/src/components/mainRoutineBox/MainRoutineBox.jsx b/src/components/mainRoutineBox/MainRoutineBox.jsx
index f119754a..a774ba86 100644
--- a/src/components/mainRoutineBox/MainRoutineBox.jsx
+++ b/src/components/mainRoutineBox/MainRoutineBox.jsx
@@ -34,7 +34,7 @@ function MainRoutineBox({
{contentArray.map((line, index) => (
- {line.trim()}
+ ‣{line.trim()}
))}
diff --git a/src/pages/NotFound/NotFount.jsx b/src/pages/NotFound/NotFount.jsx
index e223805e..33610cf5 100644
--- a/src/pages/NotFound/NotFount.jsx
+++ b/src/pages/NotFound/NotFount.jsx
@@ -26,9 +26,9 @@ export const NotFound = () => {
@@ -47,9 +47,9 @@ export const NotFound = () => {
@@ -58,9 +58,9 @@ export const NotFound = () => {
@@ -73,7 +73,7 @@ export const NotFound = () => {
color: "white",
fontSize: "20px",
fontFamily: "AppleSDGothicNeoL",
- fontWeight: "400",
+ fontWeight: "200",
lineHeight: "20px",
marginTop: "1rem",
}}