+
+
+
+
+
+ {restaurantDetail.name}
+ {restaurantDetail.food_type}
+
+
+
+
+ {/* TODO: isAdd에 대한 처리가 필요합니다. */}
+
+
+
+
+
+ );
+};
+
+export default RestDetailView;
+
+const SummaryWrapper = styled.div`
+ position: relative;
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ gap: 8px;
+`;
+
+const SummaryInfo = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ flex: 1;
+ max-width: calc(100% - 16px - 16px - 50px - 68px);
+`;
+
+const Title = styled.h3`
+ display: inline-block;
+ font-size: 16px;
+ font-weight: ${({ theme }) => theme.fontWeights.Regular};
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 100%;
+`;
+
+const Category = styled.p`
+ display: inline-block;
+ margin-top: 6px;
+ font-size: 14px;
+ font-weight: ${({ theme }) => theme.fontWeights.Light};
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 100%;
+`;
+
+const Divider = styled.div`
+ margin: 14px;
+ height: 1px;
+ background-color: ${({ theme }) => theme.colors.whitegray};
+`;
diff --git a/src/components/bottomSheet/reaturantDetail/ReviewContent.tsx b/src/components/bottomSheet/reaturantDetail/ReviewContent.tsx
new file mode 100644
index 0000000..25def4b
--- /dev/null
+++ b/src/components/bottomSheet/reaturantDetail/ReviewContent.tsx
@@ -0,0 +1,141 @@
+import { styled } from 'styled-components';
+import usePostRecommend from '~/hooks/api/restaurants/usePostRecommend';
+import { Review } from '~/types/restaurants';
+
+interface ReviewContentProps {
+ review: Review;
+ restaurentId: number;
+}
+
+const formatDate = (date: string) => {
+ const dateObj = new Date(date);
+ const year = dateObj.getFullYear();
+ const month = String(dateObj.getMonth() + 1).padStart(2, '0');
+ const day = String(dateObj.getDate()).padStart(2, '0');
+ return `${year}.${month}.${day}`;
+};
+
+const countFormat = (count: number) => {
+ if (count >= 1000) {
+ return `${(count / 1000).toFixed(1)}k`;
+ }
+ return count;
+};
+
+const ReviewContent: React.FC