Compare commits
2 Commits
310fde31d6
...
8df5233fee
| Author | SHA1 | Date |
|---|---|---|
|
|
8df5233fee | |
|
|
5796cce9c0 |
27
index.css
27
index.css
|
|
@ -7282,7 +7282,7 @@
|
|||
.footer-content {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
align-items: center;
|
||||
gap: 4rem;
|
||||
}
|
||||
}
|
||||
|
|
@ -7308,6 +7308,31 @@
|
|||
line-height: 1.19;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.footer-link {
|
||||
font-size: 13px;
|
||||
color: #379599;
|
||||
text-decoration: none;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.footer-link:hover {
|
||||
opacity: 1;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.footer-link-divider {
|
||||
font-size: 13px;
|
||||
color: #379599;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.footer-right {
|
||||
max-width: 600px;
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -10,6 +10,11 @@ const Footer: React.FC = () => {
|
|||
<div className="footer-left">
|
||||
<img src="/assets/images/ado2-sidebar-logo.svg" alt="ADO2" className="footer-logo" />
|
||||
<p className="footer-copyright">Copyright ⓒ O2O Inc. All rights reserved</p>
|
||||
<div className="footer-links">
|
||||
<a href="https://demo.castad.net/privacy.html" target="_blank" rel="noopener noreferrer" className="footer-link">{t('footer.privacyPolicy')}</a>
|
||||
<span className="footer-link-divider">|</span>
|
||||
<a href="https://demo.castad.net/terms.html" target="_blank" rel="noopener noreferrer" className="footer-link">{t('footer.termsOfService')}</a>
|
||||
</div>
|
||||
</div>
|
||||
<div className="footer-right">
|
||||
<p className="footer-info">{t('footer.company')}</p>
|
||||
|
|
|
|||
|
|
@ -98,7 +98,9 @@
|
|||
"headquarters": "HQ : 41593 Unicorn Lab Daegu A05, 5F, 111 Oksan-ro, Buk-gu, Daegu, Korea",
|
||||
"researchCenter": "R&D : 13453 Rooms 504-505 (East), KT Pangyo Bldg, 32 Geumto-ro, Sujeong-gu, Seongnam-si, Gyeonggi-do, Korea",
|
||||
"phone": "Tel : 070-4260-8310 | 010-2755-6463",
|
||||
"email": "Email : o2oteam@o2o.kr"
|
||||
"email": "Email : o2oteam@o2o.kr",
|
||||
"privacyPolicy": "Privacy Policy",
|
||||
"termsOfService": "Terms of Service"
|
||||
},
|
||||
"social": {
|
||||
"title": "Social Media Posting",
|
||||
|
|
|
|||
|
|
@ -98,7 +98,9 @@
|
|||
"headquarters": "본사 : 41593 대구광역시 북구 옥산로 111, 5층 유니콘랩 대구 A05호",
|
||||
"researchCenter": "연구소 : 13453 경기 성남시 수정구 금토로 32 (금토동) (주)KT 판교빌딩 504호~505호 (East)",
|
||||
"phone": "전화 : 070-4260-8310 | 010-2755-6463",
|
||||
"email": "이메일 : o2oteam@o2o.kr"
|
||||
"email": "이메일 : o2oteam@o2o.kr",
|
||||
"privacyPolicy": "개인정보처리방침",
|
||||
"termsOfService": "서비스 약관"
|
||||
},
|
||||
"social": {
|
||||
"title": "소셜 미디어 포스팅",
|
||||
|
|
|
|||
Loading…
Reference in New Issue