diff --git a/README.md b/README.md
index 4a3bebc..e6c06f6 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,11 @@
# ๐ TomoLow
-### ํฌ์๋ ๋ชจ์๋ก, ๋ฆฌ์คํฌ๋ ๋ก์ฐ๋ก!
-2025 ๋ฉ์์ด์ฌ์์ฒ๋ผ 4ํธ์ ํค 16ํ
-2025.10.11 ~ 2025.11.15
+### ํฌ์๋ฅผ ๋ชจ์๋ก, ๋ฆฌ์คํฌ๋ ๋ก์ฐ๋ก!
+
+>**ํ๋ช
** : 2025 ๋ฉ์์ด์ฌ์์ฒ๋ผ 4ํธ์ ํค 16ํ
+>
+>**๊ฐ๋ฐ ๊ธฐ๊ฐ** : 2025.10.11 ~ 2025.11.14
+>
+>**๋ฐฐํฌ๋ ์ฃผ์** :https://tomolow.netlify.app/
๐ Overview
@@ -21,18 +25,34 @@ TomoLow๋ ํ์ต๊ณผ ํฌ์๊ฐ ๋ถ๋ฆฌ๋ ๊ธฐ์กด ๊ตฌ์กฐ๋ฅผ ๊ฐ์ ํ์ฌ, ์ฌ์ฉ
๐ ๏ธ Tech Stack
+#### Design (UI/UX)
+
+
+#### Environment
+    
+
+#### Frontend
+   
+
+
+#### Backend






+

-

-
+
+
+
+
+#### Communication
+ 
๐ Features
@@ -52,11 +72,23 @@ TomoLow๋ ํ์ต๊ณผ ํฌ์๊ฐ ๋ถ๋ฆฌ๋ ๊ธฐ์กด ๊ตฌ์กฐ๋ฅผ ๊ฐ์ ํ์ฌ, ์ฌ์ฉ
๐จโ๐ฉโ๐งโ๐ฆ Members
-|PM|FE|FE|FE|BE|BE|
-|:--:|:--:|:--:|:--:|:--:|:--:|
-|||||||
-|๋๊ตญ๋|์๋ช
์ฌ๋|๋๊ตญ๋|์๊ฒฝ๋|์๊ฒฝ๋|์๋ช
์ฌ๋|
-|๋ฐ์ฑ์ค|๋ฐ์์ฐ|๋ฐ์์ฐ|์ ๋ชฉ์ง|์คํด๋ฏผ|์ด๊ฒฝ์|
+### PM & DESIGN
+
+#### ๐ ๋ฐ์ฑ์ค
+
+
+### Backend
+|
|
|
+|:---------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------:|
+| BE Developer | BE Developer |
+| [์คํด๋ฏผ](https://github.com/hamtorygoals) | [์ด๊ฒฝ์](https://github.com/ruddmslee) |
+
+### Frontend
+|
|
|
|
+|:---------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------:|
+| FE Developer | FE Developer | FE Developer |
+| [๋ฐ์์ฐ](https://github.com/ss0yaa) | [๋ฐ์์ฐ](https://github.com/krlyeon) | [์ ๋ชฉ์ง](https://github.com/Jeongmokjin) |
+
๐ Project Structure
diff --git a/src/main/java/com/hackathon/tomolow/domain/market/dto/RankItem.java b/src/main/java/com/hackathon/tomolow/domain/market/dto/RankItem.java
index 2f48af3..d7f033e 100644
--- a/src/main/java/com/hackathon/tomolow/domain/market/dto/RankItem.java
+++ b/src/main/java/com/hackathon/tomolow/domain/market/dto/RankItem.java
@@ -29,7 +29,7 @@ public class RankItem {
private String name;
@Schema(description = "๋ง์ผ ์ด๋ฏธ์ง URL")
- private String imageUrl; // โ
์ถ๊ฐ
+ private String imgUrl; // โ
์ถ๊ฐ
@Schema(description = "ํ์ฌ๊ฐ")
private BigDecimal price;
diff --git a/src/main/java/com/hackathon/tomolow/domain/market/service/RankingService.java b/src/main/java/com/hackathon/tomolow/domain/market/service/RankingService.java
index 6d2f166..f2379c9 100644
--- a/src/main/java/com/hackathon/tomolow/domain/market/service/RankingService.java
+++ b/src/main/java/com/hackathon/tomolow/domain/market/service/RankingService.java
@@ -103,7 +103,7 @@ private RankItem toRankItem(
.marketId(m != null ? m.getId() : null)
.symbol(symbol)
.name(m != null ? m.getName() : symbol)
- .imageUrl(m != null ? m.getImgUrl() : null)
+ .imgUrl(m != null ? m.getImgUrl() : null)
.price(BigDecimal.ZERO)
.build();
}
@@ -119,7 +119,7 @@ private RankItem toRankItem(
.marketId(m != null ? m.getId() : null)
.symbol(symbol)
.name(m != null ? m.getName() : symbol)
- .imageUrl(m != null ? m.getImgUrl() : null)
+ .imgUrl(m != null ? m.getImgUrl() : null)
.price(readBig(t, "tradePrice"))
.changeRate(readBig(t, "changeRate"))
.changePrice(readBig(t, "changePrice"))
@@ -131,7 +131,7 @@ private RankItem toRankItem(
.marketId(m != null ? m.getId() : null)
.symbol(symbol)
.name(m != null ? m.getName() : symbol)
- .imageUrl(m != null ? m.getImgUrl() : null)
+ .imgUrl(m != null ? m.getImgUrl() : null)
.price(BigDecimal.ZERO)
.build();
}