diff --git a/public/index.html b/public/index.html
index 062508873a80a7d20219c63a81afe85964ab9f27..89e84c975302dfdf230a6a7d3451977c113a748e 100644
--- a/public/index.html
+++ b/public/index.html
@@ -5,10 +5,6 @@
     <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="theme-color" content="#000000" />
-    <meta
-      name="description"
-      content="Web site created using create-react-app"
-    />
     <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
     <link rel="stylesheet" href="%PUBLIC_URL%/reset.css" />
     <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
@@ -26,7 +22,7 @@
       work correctly both with client-side routing and a non-root public URL.
       Learn how to configure a non-root public URL by running `npm run build`.
     -->
-    <title>React App</title>
+    <title>FESTIVELO</title>
 
   </head>
   <body>
diff --git a/public/logo192.png b/public/logo192.png
deleted file mode 100644
index fc44b0a3796c0e0a64c3d858ca038bd4570465d9..0000000000000000000000000000000000000000
Binary files a/public/logo192.png and /dev/null differ
diff --git a/public/logo512.png b/public/logo512.png
deleted file mode 100644
index a4e47a6545bc15971f8f63fba70e4013df88a664..0000000000000000000000000000000000000000
Binary files a/public/logo512.png and /dev/null differ
diff --git a/src/components/AddPlace.js b/src/components/AddPlace.js
index 10c2e1c11451d1b00145f0abcaccd50c75909478..7795145b9ff3a2b8aa2a611de29a615b233db4df 100644
--- a/src/components/AddPlace.js
+++ b/src/components/AddPlace.js
@@ -473,12 +473,10 @@ const AddPlace = ({ tripId, day, onBack, onPlaceSelect, tripStartDate, tripEndDa
     e.stopPropagation();
 
     try {
-      // 현재 day의 plans 정보 가져오기
       const tripResponse = await axios.get(`${API_URL}/api/trips/trips/${tripId}`);
       const currentTrip = tripResponse.data;
       const currentDayPlans = currentTrip.plans[day] || { places: [], route: [] };
 
-      // 새로운 place 객체 생성
       const newPlace = {
         id: place.id,
         type: place.type || 12,
@@ -487,7 +485,6 @@ const AddPlace = ({ tripId, day, onBack, onPlaceSelect, tripStartDate, tripEndDa
         coordinates: place.coordinates
       };
 
-      // 기존 places와 route에 새로운 장소 추가
       const updatedPlaces = [...currentDayPlans.places, newPlace];
       const updatedRoute = [...currentDayPlans.route, place.id];
       const requestData = {
@@ -496,17 +493,14 @@ const AddPlace = ({ tripId, day, onBack, onPlaceSelect, tripStartDate, tripEndDa
         route: updatedRoute
       };
 
-      console.log(requestData);
-
       const response = await axios.put(
         `${API_URL}/api/trips/trips/${tripId}/plans/day`,
         requestData
       );
 
       if (response.status === 200 || response.status === 201) {
-        toast.success('장소가 성공으로 추가되었습니다.');
+        // toast.success('장소가 성공으로 추가되었습니다.');
         onSuccess?.();
-        onBack();
       }
     } catch (error) {
       console.error('장소 추가 실패:', error);
diff --git a/src/components/MyTrip.js b/src/components/MyTrip.js
index 036bea19568c6ffc11e84428cb325009c93fdd9a..7caa089e8bb9943428913fdac70cd4925ea53493 100644
--- a/src/components/MyTrip.js
+++ b/src/components/MyTrip.js
@@ -218,7 +218,7 @@ const MyTrip = ({ trips, onPlaceSelect, onAddPlace, onDirectionSelect, onTripSel
                                                             <div className="place-number">{index + 1}</div>
                                                             <div className="place-info">
                                                                 <h5 className="place-name">{place.name}</h5>
-                                                                <p className="place-location">{place.location}</p>
+                                                                <p className="place-location">{place.address || place.location}</p>
                                                             </div>
                                                             <button
                                                                 className="delete-place-button"
diff --git a/src/components/MyTripWeather.js b/src/components/MyTripWeather.js
index 2dc7b1744949db12d9510aa01524303d18b5b58e..952f21d93c77be3a449fd47fed1f425c1009f758 100644
--- a/src/components/MyTripWeather.js
+++ b/src/components/MyTripWeather.js
@@ -76,7 +76,7 @@ const MyTripWeather = ({ location }) => {
         <div className="weather-container">
             <h4 className="weather-title">
                 {loading ? (
-                    <div className="shimmer-text"></div>
+                    <div className="weather-shimmer-text"></div>
                 ) : (
                     `${location}의 날씨는?`
                 )}
diff --git a/src/pages/Home.js b/src/pages/Home.js
index f09638bac2f15befbf41be80957de6d61b17a26e..5e8bf1bb4081e299b18ee401eb0fc2e1e6f5a3fe 100644
--- a/src/pages/Home.js
+++ b/src/pages/Home.js
@@ -27,8 +27,8 @@ const Home = () => {
   const [showDirection, setShowDirection] = useState(false);
   const [directionInfo, setDirectionInfo] = useState(null);
   const [selectedLocation, setSelectedLocation] = useState({
-    latitude: 35.1586,
-    longitude: 129.1603
+    latitude: 37.2829,
+    longitude: 127.0435
   });
   const [ws, setWs] = useState(null);
 
@@ -134,7 +134,7 @@ const Home = () => {
 
     setTimeout(() => {
       map?.relayout();
-    }, 200);
+    }, 500);
   };
 
   const handlePlaceSelect = useCallback((place) => {
@@ -414,7 +414,7 @@ const Home = () => {
       await axios.delete(`${API_URL}/api/trips/trips/${tripId}`);
       setTrips(prevTrips => prevTrips.filter(trip => trip._id !== tripId));
 
-      toast.success('여행이 성공적으로 삭제되었습니다.');
+      // toast.success('여행이 성공적으로 삭제되었습니다.');
     } catch (error) {
       console.error('여행 삭제 중 오류 발생:', error);
 
diff --git a/src/styles/MyTripWeather.css b/src/styles/MyTripWeather.css
index 0e9c3d54ef9128204480e6022d263917981a0667..13a0d71d27f6555015f11d5f377ed2e28f4833d3 100644
--- a/src/styles/MyTripWeather.css
+++ b/src/styles/MyTripWeather.css
@@ -76,7 +76,7 @@
     text-align: center;
 }
 
-@keyframes shimmer {
+@keyframes weather-shimmer {
     0% {
         background-position: -200% 0;
     }
@@ -85,13 +85,13 @@
     }
 }
 
-.shimmer {
+.weather-shimmer {
     background: #f6f7f8;
     border-radius: 8px;
     padding: 15px;
 }
 
-.shimmer-text {
+.weather-shimmer-text {
     height: 16px;
     background: linear-gradient(
         90deg,
@@ -100,26 +100,7 @@
         #f0f0f0 75%
     );
     background-size: 200% 100%;
-    animation: shimmer 2s infinite linear;
+    animation: weather-shimmer 2s infinite linear;
     border-radius: 4px;
     margin: 4px 0;
-}
-
-.shimmer-circle {
-    width: 50px;
-    height: 50px;
-    border-radius: 50%;
-    background: linear-gradient(
-        90deg,
-        #f0f0f0 25%,
-        #e0e0e0 50%,
-        #f0f0f0 75%
-    );
-    background-size: 200% 100%;
-    animation: shimmer 2s infinite linear;
-    margin: 8px auto;
-}
-
-.weather-day.shimmer {
-    background: white;
 }
\ No newline at end of file