Skip to content

Commit

Permalink
Merge pull request #341 from oduck-team/chore/340
Browse files Browse the repository at this point in the history
chore: 메인 페이지 미구현 API 영역을 노출하지 않도록 변경
  • Loading branch information
presentKey authored Dec 26, 2023
2 parents 9290e7e + 99bfdb7 commit da073ad
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/features/common/routes/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import AnimeRanking from "@/features/animes/components/AnimeRanking";
import useAuth from "@/features/auth/hooks/useAuth";

import Discord from "./Discord";
import NewestAnimes from "./NewestAnimes";
import RecentReview from "./RecentReview";
import RecentReviewImageCard from "./RecentReviewImageCard";
import RecommendAnimes from "./RecommendAnimes";
// import NewestAnimes from "./NewestAnimes";
// import RecentReview from "./RecentReview";
// import RecentReviewImageCard from "./RecentReviewImageCard";
// import RecommendAnimes from "./RecommendAnimes";
import { Bottom, HomeContainer } from "./style";

export default function Home() {
Expand All @@ -27,31 +27,31 @@ export default function Home() {
<>
<Head />
<HomeContainer>
<ErrorBoundary onReset={reset}>
{/* <ErrorBoundary onReset={reset}>
<RecentReviewImageCard />
</ErrorBoundary>
</ErrorBoundary> */}

<ErrorBoundary onReset={reset}>
{/* <ErrorBoundary onReset={reset}>
<NewestAnimes />
</ErrorBoundary>
</ErrorBoundary> */}

<Discord />
<ErrorBoundary onReset={reset}>
<AnimeRanking title="이번주 TOP10" />
</ErrorBoundary>

<ErrorBoundary onReset={reset}>
{/* <ErrorBoundary onReset={reset}>
<RecentReview />
</ErrorBoundary>
</ErrorBoundary> */}

{/* TODO: 추천 애니 요청 방법 정하기 */}
<ErrorBoundary onReset={reset}>
{/* <ErrorBoundary onReset={reset}>
<RecommendAnimes title="덕후들의 눈물샘을 터뜨린" />
</ErrorBoundary>
</ErrorBoundary> */}

<ErrorBoundary onReset={reset}>
{/* <ErrorBoundary onReset={reset}>
<RecommendAnimes title="이불밖을 못 나오게 하는" />
</ErrorBoundary>
</ErrorBoundary> */}

<Bottom>
<span>감명 깊게 본 애니를 다른 회원님들과 공유해보세요!</span>
Expand Down

0 comments on commit da073ad

Please sign in to comment.