+
+ );
+}
+
+export default HomeScreen;
diff --git a/src/features/rental/RentalListScreen.tsx b/src/features/rental/RentalListScreen.tsx
index e02b10e..25e9086 100644
--- a/src/features/rental/RentalListScreen.tsx
+++ b/src/features/rental/RentalListScreen.tsx
@@ -6,8 +6,10 @@ import {
} from "@wanteddev/wds";
import { IconBell, IconSearch } from "@wanteddev/wds-icon";
import { useState } from "react";
+import { useNavigate } from "react-router-dom";
-import BottomNav, { type BottomNavValue } from "@/components/ui/BottomNav";
+import type { BottomNavValue } from "@/components/ui/BottomNav";
+import ScreenLayout from "@/components/ui/ScreenLayout";
import RentalCategoryFilter from "@/features/rental/components/RentalCategoryFilter";
import RentalItemCard from "@/features/rental/components/RentalItemCard";
import { RENTAL_ITEMS } from "@/features/rental/constants/rentalItems";
@@ -18,11 +20,20 @@ function RentalListScreen() {
const [category, setCategory] = useState("전체");
const [bottomNavValue, setBottomNavValue] =
useState("rental");
+ const navigate = useNavigate();
+
+ const handleBottomNavValueChange = (value: BottomNavValue) => {
+ setBottomNavValue(value);
+ if (value === "home") {
+ navigate("/");
+ }
+ };
return (
-
-
- {/* background 기본값(true)은 iOS 반투명 스타일이라 뒤 배경이 비쳐 보인다. Figma는 별도 배경 없이 화면 배경을 그대로 쓴다. */}
+
빌릴게
+ }
+ onBottomNavValueChange={handleBottomNavValueChange}
+ >
+