Skip to content

Commit

Permalink
fix: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Apr 4, 2024
1 parent 92a098f commit 07a7ac9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useRouter } from 'next/navigation';

import Flex from '@/components/shared/flex/Flex';
import HomeSearchBar from '@/components/shared/home-search-bar/HomeSearchBar';
import ImgToText from '@/components/shared/ocr/OCR';
import ImgToText from '@/components/shared/ocr/Ocr';
import ProductList from '@components/home/product-list/ProductList';
import { MOCK_BANNER_DATA } from '@mocks/homeHandler/mocks';
// import { TEST_MOCK_BANNER_DATA } from '@mocks/homeHandler/mocks';
Expand Down Expand Up @@ -65,6 +65,10 @@ function Home() {
</Flex>
<Spacing size={80} />

<Text typography="t4" bold>
지금 HOT한 제품
</Text>

<Text typography="t4" bold>
추천 세차용품
</Text>
Expand Down
4 changes: 2 additions & 2 deletions src/components/shared/home-search-bar/HomeSearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import classNames from 'classnames/bind';
import Camera from '@/components/icons/Camera';
import HomeSearch from '@/components/icons/HomeSearch';

import ImgToText from '../ocr/Ocr';
import Spacing from '../spacing/Spacing';
import ImgToText from '../webcam/WebCam';

import styles from './HomeSearchBar.module.scss';

Expand Down Expand Up @@ -80,7 +80,7 @@ const HomeSearchBar = forwardRef<HTMLInputElement, SearchBarProps>(
</button>
</form>
);
},
}
);

export default HomeSearchBar;

0 comments on commit 07a7ac9

Please sign in to comment.