최초 세팅

This commit is contained in:
bd091
2025-10-18 11:06:19 +09:00
commit bf0778601f
2497 changed files with 572903 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{/mobile/layout/detailLayout}">
<th:block layout:fragment="layout_css">
<link rel="stylesheet" href="/css/mobile/mypage_support.css">
</th:block>
<th:block layout:fragment="layout_content">
<h3>고객센터</h3>
<ul>
<li>
<a onclick="call('02-547-4711')">
<div class="img_box">
<img src="/image/mobile/support_phone.svg" alt="전화 문의"/>
</div>
<p>전화 문의</p>
</a>
</li>
<li>
<a href="/mobilecustomerservice/insertUserInquiryIntro.do">
<div class="img_box">
<img src="/image/mobile/support_inquiry.svg" alt="문의하기"/>
</div>
<p>1:1 문의하기</p>
</a>
</li>
<li>
<a href="/mobilecustomerservice/selectListUserInquiryIntro.do">
<div class="img_box">
<img src="/image/mobile/support_history.svg" alt="문의 내역"/>
</div>
<p>문의 내역</p>
</a>
</li>
</ul>
</th:block>
</html>