Skip to content

Commit

Permalink
fix: Product UI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Apr 11, 2024
1 parent dc8e7a3 commit 2bd81db
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import classNames from 'classnames/bind';
import { useRouter } from 'next/navigation';

import { Spinner } from '@/components/additional-info/spinner/Spinner';
import FixProductList from '@/components/home/fix-product-list/FixProductList';
import HotItem from '@/components/home/hotItem/HotItem';
import Caption from '@/components/icons/Caption';
import Flex from '@/components/shared/flex/Flex';
Expand Down Expand Up @@ -56,26 +57,27 @@ function Home() {
setIsLoading={setIsLoading}
/>
</Flex>
<Spacing size={40} />
<Spacing size={52} />
{isLoading ? <Spinner /> : null}
<div className={cx('hotItemContainer')}>
<HotItem />
</div>
<Spacing size={10} />
{/* <Spacing size={10} />
<Text typography="t4" bold>
추천 세차용품
</Text>
<Spacing size={16} />
<RecommendListContainer />
<RecommendListContainer /> */}
</div>

<Spacing size={40} />
{/* <Spacing size={20} /> */}

<div className={cx('recommendListContainer')}>
<Text typography="t4" bold>
이런 상품은 어때요?
</Text>
<FixProductList />
</div>

<Spacing size={32} />
Expand All @@ -84,7 +86,7 @@ function Home() {
WashFit 랭킹
</Text>
<Spacing size={16} />
<ProductList />
{/* <ProductList /> */}
</div>
<ScrollToTop />
</main>
Expand Down

0 comments on commit 2bd81db

Please sign in to comment.