|
| 1 | +import Component from '@/core/Component'; |
| 2 | + |
| 3 | +import styles from './styles.module.css'; |
| 4 | + |
| 5 | +class Footer extends Component { |
| 6 | + template() { |
| 7 | + return ` |
| 8 | + <div class=${styles.footer__container}> |
| 9 | + <div class=${styles.footer__inner}> |
| 10 | + <div class=${styles.footer__list}> |
| 11 | + <div class=${styles.footer__item}> |
| 12 | + <div class=${styles.footer__title}>토스테크</div> |
| 13 | + <div class=${styles.footer__subTitle}> |
| 14 | + <ul> |
| 15 | + <li><span>의견 보내기</span></li> |
| 16 | + </ul> |
| 17 | + </div> |
| 18 | + </div> |
| 19 | + <div class=${styles.footer__item}> |
| 20 | + <div class=${styles.footer__title}>토스</div> |
| 21 | + <div class=${styles.footer__subTitle}> |
| 22 | + <ul> |
| 23 | + <li><span>홈페이지</span></li> |
| 24 | + <li><span>회사 소개</span></li> |
| 25 | + <li><span>채용</span></li> |
| 26 | + </ul> |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + <div class=${styles.footer__item}> |
| 30 | + <div class=${styles.footer__title}>고객센터</div> |
| 31 | + <div class=${styles.footer__subTitle}> |
| 32 | + <ul> |
| 33 | + <li><span>전화: 1599-4905(24시간 연중무휴)</span></li> |
| 34 | + <li><span>이메일: [email protected]</span></li> |
| 35 | + <li><span>카카오톡: @toss</span></li> |
| 36 | + </ul> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + </div> |
| 40 | + <div class=${styles.footer__company}> |
| 41 | + <span>(주)비바리퍼블리카</span> |
| 42 | + </div> |
| 43 | + <div class=${styles.footer__copyright}> |
| 44 | + <span>Copyright © Viva Republica, Inc. All Rights Reserved.</span> |
| 45 | + </div> |
| 46 | + <div class=${styles.footer__socialList}> |
| 47 | + <li class=${styles.footer__socialItem}> |
| 48 | + <a> |
| 49 | + <img src="https://static.toss.im/assets/homepage/safety/icn-facebook.svg" alt="Toss Facebook"> |
| 50 | + </a> |
| 51 | + </li> |
| 52 | + <li class=${styles.footer__socialItem}> |
| 53 | + <a> |
| 54 | + <img src="https://static.toss.im/assets/homepage/safety/icn-facebook.svg" alt="Toss Facebook"> |
| 55 | + </a> |
| 56 | + </li> |
| 57 | + </div> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + `; |
| 61 | + } |
| 62 | +} |
| 63 | + |
| 64 | +export default Footer; |
0 commit comments