diff --git a/src/App.jsx b/src/App.jsx
index 0bfc956..8c1b837 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -3,7 +3,6 @@ import Layout from "./pages/layouts/Layout"
import Ingredient from "./pages/ingredient/Ingregdient"
import Recipe from "./pages/recipe/Recipe"
import {AddRecipe} from "./pages/recipe/AddRecipe"
-import UsersIngredientItem from "./components/ingredient/UsersIngredientItem"
function App() {
return (
diff --git a/src/assets/css/Ingredient/ingredient/Ingredient.module.css b/src/assets/css/Ingredient/ingredient/Ingredient.module.css
new file mode 100644
index 0000000..547c8d9
--- /dev/null
+++ b/src/assets/css/Ingredient/ingredient/Ingredient.module.css
@@ -0,0 +1,5 @@
+/* Ingredient.module.css */
+.userIngredient {
+ border: 3px solid black;
+ background-color: lightgreen;
+}
diff --git a/src/assets/css/Ingredient/userIngredient/UsersIngredient.module.css b/src/assets/css/Ingredient/userIngredient/UsersIngredient.module.css
new file mode 100644
index 0000000..40d0741
--- /dev/null
+++ b/src/assets/css/Ingredient/userIngredient/UsersIngredient.module.css
@@ -0,0 +1,15 @@
+/* UserIngredient.module.css */
+
+.container {
+ padding: 1rem;
+ background-color: #f0fff0; /* 연한 녹색 배경 */
+ text-align: center;
+}
+
+.cardContainer {
+ display: flex;
+ flex-wrap: wrap; /* 줄바꿈 허용 */
+ justify-content: flex-start; /* 카드들을 왼쪽 정렬 */
+ gap: 1rem; /* 카드 간격 */
+}
+
diff --git a/src/assets/css/Ingredient/userIngredient/UsersIngredientItem.module.css b/src/assets/css/Ingredient/userIngredient/UsersIngredientItem.module.css
new file mode 100644
index 0000000..5b02d62
--- /dev/null
+++ b/src/assets/css/Ingredient/userIngredient/UsersIngredientItem.module.css
@@ -0,0 +1,102 @@
+.card {
+ width: 260px; /* 가로 길이 */
+ height: auto; /* 세로 길이 자동 조정 */
+ background-color: #ffffff; /* 카드 배경 */
+ padding: 0.5rem; /* 내부 여백 최소화 */
+ border: 1px solid #ddd;
+ border-radius: 10px;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between; /* 상단, 중단, 하단 영역 분리 */
+ text-align: left;
+ position: relative; /* 전체 카드 내부 배치 */
+ transition: all 0.3s ease;
+}
+
+.card img {
+ border-radius: 10px;
+ height: 120px; /* 이미지 높이 */
+ width: 100%;
+ object-fit: cover; /* 이미지 비율 유지 */
+ margin-bottom: 0; /* 이미지와 텍스트 간격 제거 */
+}
+
+/* 즐겨찾기 버튼과 수량 영역 */
+.favoriteAndQuantity {
+ display: flex;
+ justify-content: space-between; /* 좌우로 배치 */
+ align-items: center;
+ margin-top: -30px; /* 이미지와 겹치도록 조정 */
+ padding: 0; /* 좌우 여백 제거 */
+}
+
+.favoriteButton {
+ display: flex; /* Flexbox로 내부 정렬 */
+ align-items: center; /* 세로 가운데 정렬 */
+ justify-content: center; /* 가로 가운데 정렬 */
+ background-color: rgba(207, 205, 205, 0.7); /* 반투명 배경 */
+ border: none;
+ font-size: 0.9rem; /* 별 크기 조정 */
+ cursor: pointer;
+ border-radius: 50%; /* 버튼을 동그랗게 */
+ width: 1.5rem; /* 버튼 너비 */
+ height: 1.5rem; /* 버튼 높이 */
+ padding: 0; /* 내부 여백 제거 */
+ margin-top: 2px;
+}
+
+.favoriteButton:hover {
+ background-color: rgb(66, 55, 55)/* Hover 시 색상 변경 */
+}
+
+
+
+/* 수량 표시 */
+.quantity {
+ background-color: rgba(207, 205, 205, 0.7); /* 반투명 배경 */
+ color: black;
+ padding: 0.2rem 0.4rem; /* 여백 조정 */
+ border-radius: 5px;
+ font-size: 0.85rem; /* 텍스트 크기 조정 */
+}
+
+/* 카드 텍스트 섹션 */
+.details {
+ font-size: 0.85rem;
+ color: #666;
+ margin-top: 0.1rem; /* 텍스트 간격 최소화 */
+ line-height: 1.4;
+}
+
+.details strong {
+ color: #333;
+ font-weight: bold;
+}
+
+.title {
+ font-size: 1rem;
+ font-weight: bold;
+ margin: 0.2rem 0; /* 이미지와 이름 간격 최소화 */
+ text-align: center;
+}
+
+/* 사용하기 버튼 */
+.useButton {
+ align-self: flex-end; /* 오른쪽 정렬 */
+ background-color: rgba(207, 205, 205, 1);
+ color: black;
+ font-weight: 500;
+ border: none;
+ padding: 0.5rem 1rem;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 0.85rem;
+ position: absolute; /* 오른쪽 하단 고정 */
+ bottom: 10px;
+ right: 10px;
+ z-index: 5; /* 다른 요소와 겹치지 않도록 */
+}
+
+.useButton:hover {
+ background-color: rgb(179, 178, 178);
+}
diff --git a/src/assets/css/main.module.css b/src/assets/css/main.module.css
new file mode 100644
index 0000000..6da1abc
--- /dev/null
+++ b/src/assets/css/main.module.css
@@ -0,0 +1,10 @@
+@font-face {
+ font-family: 'Pretendard-Regular';
+ src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
+ font-weight: 400;
+ font-style: normal;
+}
+
+* {
+ font-family: Pretendard-Regular;
+}
\ No newline at end of file
diff --git a/src/components/ingredient/UsersIngredientItem.jsx b/src/components/ingredient/UsersIngredientItem.jsx
deleted file mode 100644
index 5019361..0000000
--- a/src/components/ingredient/UsersIngredientItem.jsx
+++ /dev/null
@@ -1,34 +0,0 @@
-import Button from 'react-bootstrap/Button';
-import Card from 'react-bootstrap/Card';
-
-function UsersIngredientItem({ userIngredient }) {
- console.log(userIngredient);
- return (
-