Skip to content

Commit

Permalink
Merge pull request #272 from ODOICHON/design/#271
Browse files Browse the repository at this point in the history
Design/#271 ์ค‘๊ฐœ ํ”„๋กœ์„ธ์Šค ๋ฌธ์„œ ์ด๋ฏธ์ง€ ์ˆœ์„œ ๋ณ€๊ฒฝ ๋ฐ ์บก์…˜ ์ ์šฉ
  • Loading branch information
JunJongHun authored Aug 18, 2024
2 parents 2e3df7a + 8362cdc commit fa6635e
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 6 deletions.
Binary file added src/assets/trade/example1.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 removed src/assets/trade/example1.png
Binary file not shown.
Binary file added src/assets/trade/example2.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 removed src/assets/trade/example2.png
Binary file not shown.
Binary file added src/assets/trade/example3.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 removed src/assets/trade/example3.png
Binary file not shown.
21 changes: 15 additions & 6 deletions src/pages/Trade/Process/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useNavigate } from 'react-router-dom';
import { motion } from 'framer-motion';
import nextArrowImg from '@/assets/common/nextArrow.svg';
import example1Img from '@/assets/trade/example1.png';
import example2Img from '@/assets/trade/example2.png';
import example3Img from '@/assets/trade/example3.png';
import example1Img from '@/assets/trade/example1.jpg';
import example2Img from '@/assets/trade/example2.jpg';
import example3Img from '@/assets/trade/example3.jpg';
import { opacityVariants } from '@/constants/variants';
import styles from './styles.module.scss';

Expand Down Expand Up @@ -173,13 +173,22 @@ export default function TradeProcessPage() {
<h4>(3) ๋ฌธ์„œ ์˜ˆ์‹œ ์ด๋ฏธ์ง€</h4>
<ul className={styles.imageUl}>
<li>
<img src={example1Img} alt="exampleImage1" />
<figure>
<img src={example1Img} alt="exampleImage1" />
<figcaption>๋ถ€๋™์‚ฐ ๋งค๋งค ๊ณ„์•ฝ์„œ ์˜ˆ์‹œ</figcaption>
</figure>
</li>
<li>
<img src={example2Img} alt="exampleImage2" />
<figure>
<img src={example2Img} alt="exampleImage2" />
<figcaption>๋ถ€๋™์‚ฐ ๊ฑฐ๋ž˜ ๊ณ„์•ฝ ์‹ ๊ณ ์„œ ์˜ˆ์‹œ</figcaption>
</figure>
</li>
<li>
<img src={example3Img} alt="exampleImage3" />
<figure>
<img src={example3Img} alt="exampleImage3" />
<figcaption>๋“ฑ๊ธฐ๋ถ€๋“ฑ๋ณธ ์˜ˆ์‹œ</figcaption>
</figure>
</li>
</ul>
</ul>
Expand Down
7 changes: 7 additions & 0 deletions src/pages/Trade/Process/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@
& img {
width: 100%;
}
& figcaption {
text-align: center;
font-size: 1.25rem;
line-height: 1.75rem;
color: #878D91;
}

}

.box {
Expand Down

0 comments on commit fa6635e

Please sign in to comment.