loagin...
;
+
+ return (
+
+
+
+ 잔여 보증금
+ {deposit.amount}원
+
+
+ 과제 차감
+ {deposit.descentAssignment}원
+
+
+ 출석 차감
+ {deposit.descentAttendance}원
+
+
+ 보증금 방어권
+ {deposit.ascentDefence}원
+
+
+ );
+};
+export default Deposit;
diff --git a/frontend/src/Deposit.module.css b/frontend/src/Deposit.module.css
new file mode 100644
index 0000000..3f83c5d
--- /dev/null
+++ b/frontend/src/Deposit.module.css
@@ -0,0 +1,41 @@
+.deposit_container {
+ width: 390px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+.deposit {
+ background-color: var(--main-green);
+ width: 309px;
+ padding-top: 26px;
+ padding-bottom: 30px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 17px;
+ border-radius: 9px;
+ margin-top: 80px;
+ margin-bottom: 87px;
+}
+.deposit > span:nth-child(1) {
+ font-weight: bold;
+ font-size: 16px;
+}
+.deposit > span:nth-child(2) {
+ font-weight: bold;
+ font-size: 20px;
+}
+.deposit_detail {
+ background-color: #575757;
+ color: white;
+ border: 1px solid rgba(217, 217, 217, 0.4);
+ border-radius: 8px;
+ padding: 12px 20px;
+ font-size: 15px;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ width: 309px;
+ height: 47px;
+ margin-bottom: 15px;
+}
diff --git a/frontend/src/Home.jsx b/frontend/src/Home.jsx
new file mode 100644
index 0000000..f1fe4fa
--- /dev/null
+++ b/frontend/src/Home.jsx
@@ -0,0 +1,31 @@
+import React from "react";
+import { useNavigate } from "react-router-dom";
+import styles from "./Home.module.css";
+
+const Home = () => {
+ const navigate = useNavigate();
+ return (
+
-
-
-
+
+ {inputs.map((input, index) => (
+ onChange && onChange(index, e.target.value)}
+ />
+ ))}
);
};
diff --git a/frontend/src/components/WeeklyListBlock.jsx b/frontend/src/components/WeeklyListBlock.jsx
index 8f8a7ee..52a7b92 100644
--- a/frontend/src/components/WeeklyListBlock.jsx
+++ b/frontend/src/components/WeeklyListBlock.jsx
@@ -12,7 +12,7 @@ const WeeklyListBlock = ({ weeks }) => {
return (
{weeks.map((week, index) => (
-
+