+
리뷰 쓰기
diff --git a/src/components/search/SearchResult.tsx b/src/components/search/SearchResult.tsx
index 74fbb61f..952e1e2c 100644
--- a/src/components/search/SearchResult.tsx
+++ b/src/components/search/SearchResult.tsx
@@ -4,6 +4,7 @@ import { useInfiniteQuery } from '@tanstack/react-query';
import ToursCategoryItem from '@components/Tours/ToursCategoryItem';
import { useEffect, useState } from 'react';
import { Spinner } from '@components/common/spinner/Spinner';
+import ScrollTopButton from '@components/Plan/ScrollTopButton';
interface SearchResultProps {
selectedRegion: string | null;
@@ -97,6 +98,8 @@ export const SearchResult = ({
isFetchingNextPage={isFetchingNextPage}
/>
)}
+
+
>
);
};
diff --git a/src/router/routerLayout.tsx b/src/router/routerLayout.tsx
index 17c05f51..9499a033 100644
--- a/src/router/routerLayout.tsx
+++ b/src/router/routerLayout.tsx
@@ -17,8 +17,9 @@ const MainLayout = () => {
'/myPageReview',
'/info',
'/survey',
- '/trip',
+ '/plan',
'/create',
+ '/add',
];
const showNav = !hideNavPaths.some((path) =>
location.pathname.includes(path),