diff --git a/profile/README.md b/profile/README.md
index 7aee6d0..c439ac5 100644
--- a/profile/README.md
+++ b/profile/README.md
@@ -177,54 +177,124 @@ Each step is detailed in the `README.md` file of the respective folder, allowing
## Usage Screenshot
-스크린샷 ㄱㄱ 아님 실사진.
+## LogIn Page
+---
+
+
+
+## Home Page
+---
+
+

+
Home Page - After Sunrise
+
+
+
+

+
Home Page - Before Sunrise
+
+
+
+
+
+## Room Page
+---
+
+
+

+
+
+
+

+
+
+First: Automode On
+Second: Automode Off
+
+
+## Device On
+---
+
+

+
can turn on in Room Page
+
+
+## Add Device
+---
+
+

+
Add Device Modal Home Page
+
+
+
+
+## Device Info
+---
+
+

+

+
+
+## WakeUp Value Configuration Modal
+---
+
+

+

+
+
+
+
-(back to top)
## Backend
### File Directory Structure
---
-
+
+

+
We are largely divided into databases, api, and middleware, and the database directory is divided into a schema and a model created using the schema. api is classified according to its function, and middleware has an error handler for error processing.
### Package.json
---
-
-
-dependencies
-"axios": "^1.6.5" => use to open API Weather Source
-"dotenv": "^16.3.1" => load .env File
-"express": "^4.18.2" => to use express.js
-"express-session": "^1.17.3" => to use express-session
-"moment": "^2.30.1" => to calculate on Date
-"mongoose": "^8.0.4" => connect with mongoDB
-"mqtt": "^5.3.4" => communication with IOT by MQTT protocol
-"uuid": "^9.0.1" => use UUID for Database
-
-
+
+

+
+**dependencies**
+- "axios": "^1.6.5" => use to open API Weather Source
+- "dotenv": "^16.3.1" => load .env File
+- "express": "^4.18.2" => to use express.js
+- "express-session": "^1.17.3" => to use express-session
+- "moment": "^2.30.1" => to calculate on Date
+- "mongoose": "^8.0.4" => connect with mongoDB
+- "mqtt": "^5.3.4" => communication with IOT by MQTT protocol
+- "uuid": "^9.0.1" => use UUID for Database
+
### Database
---
-
-
+
+

+
We used mongoDB. Since the project had to be carried out within a short period of time, it was decided to use the NOSQL database in anticipation of many changes within the project, and among them, mongoDB with good fluidity and scalability was decided to use. An Object Data Mapping (ODM) library called mongoose was used to connect Node.js and mongoDB.
Connect.js is executed before execution in app.js, which helps MongoDB proceed. Even if it is executed in duplicate, there is no concern about error occurrence because express.js avoids duplicate connections.
-
### LogIn
---
-
+
+

+
Login is executed with the above logic.
It provides users who use Google OAuth with convenient and no additional membership registration is required.
+
### MQTT communication with IOT
---