Skip to content

Commit

Permalink
fix: banner + Logo 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Mar 26, 2024
2 parents f70a70f + 384f5ca commit c17e5b0
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
Binary file added public/assets/autobrite_color5 16-9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/banner4(수정).jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/assets/banner4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/app/map/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

& nav,
.searchWrapper {
position: relative;
z-index: var(--header-zindex);
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/carousel/Banner.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}

@media screen and (width >= 1001px) {
height: 120px;
height: 130px;
}
}
}
10 changes: 7 additions & 3 deletions src/components/shared/header/headerItems/LeftIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import Link from 'next/link';

import Inquire from '@/components/icons/Inquire';
import BackArrow from '@components/icons/BackArrow';
// import Inquire from '@components/icons/Inquire';
import Logo from '@components/icons/Logo';
Expand All @@ -24,10 +25,13 @@ function LeftIcon({
<Logo />
</Link>
</li>
<li style={{ marginLeft: '8px' }}>
{/* <Link href="https://docs.google.com/forms/d/e/1FAIpQLSd96McWLLj3bR-3OEEIx656x3I_9-u7ifjwViQKlveIRb5QiA/viewform" target="_blank">
<li style={{ marginRight: '5px', position: 'relative' }}>
<Link
href="https://docs.google.com/forms/d/e/1FAIpQLSd96McWLLj3bR-3OEEIx656x3I_9-u7ifjwViQKlveIRb5QiA/viewform"
target="_blank"
>
<Inquire />
</Link> */}
</Link>
</li>
</Flex>
);
Expand Down
7 changes: 1 addition & 6 deletions src/mocks/homeHandler/mocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const MOCK_BANNER_DATA = {
item: '세정제',
},
{
productNo: 4,
productNo: 'https://autobritedirect.co.kr',
imageSource: '/assets/banner4.jpg',
alt: '그림',
item: '세정제',
Expand Down Expand Up @@ -57,23 +57,20 @@ export const MOCK_RECOMMEND_PRODUCTS = {
imageSource: '/assets/recommendItem3.png',
alt: '그림',
productName: '타올',

},
{
productNo: 4,
item: '/',
imageSource: '/assets/recommendItem4.png',
alt: '그림',
productName: '먼지털이개',

},
{
productNo: 5,
item: '/',
imageSource: '/assets/recommendItem4.png',
alt: '그림',
productName: '먼지털이개',

},
{
productNo: 6,
Expand Down Expand Up @@ -102,15 +99,13 @@ export const MOCK_RECOMMEND_PRODUCTS = {
imageSource: '/assets/recommendItem4.png',
alt: '그림',
productName: '먼지털이개',

},
{
productNo: 10,
item: '/',
imageSource: '/assets/recommendItem3.png',
alt: '그림',
productName: '타올',

},
],
};
Expand Down
2 changes: 1 addition & 1 deletion src/remote/api/types/home.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ICommon } from './common';

export interface IBanner {
productNo: number;
productNo: number | string;
imageSource: string;
alt: string;
item: string;
Expand Down

0 comments on commit c17e5b0

Please sign in to comment.