- JS 논리 오류 수정: gallery.js lightbox 초기화 타이밍, 터치 리스너 누적, IntersectionObserver 통합 - XSS 방지: qna.js showNoResults innerHTML → textContent, 정규식 이스케이프 추가 - 안전성 개선: popup.js ESC 가드, portfolio.js getIframe optional chaining, backgrounds/props null 가드 - 이미지 최적화: 스튜디오 12장 WebP 압축 (4.0MB → 2.2MB, 46% 감소) - 360 이미지: git 히스토리에서 원본 복구 후 4096×2048 리사이즈 (해상도 4.6배 향상) - 360 뷰어: image-rendering auto 전환, naturalWidth/Height 기반 렌더링으로 품질 개선 - 크리에이터 사인 추가: 얌하 (3.3KB), 구슬요 (5.9KB) WebP 변환 및 마키 삽입 - 불필요 코드 제거: gallery.js 미사용 함수 6개 삭제 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
1.7 KiB
HTML
33 lines
1.7 KiB
HTML
<!-- 공통 푸터 컴포넌트 -->
|
|
<footer class="site-footer">
|
|
<div class="container">
|
|
<div class="footer-grid">
|
|
<div class="footer-section">
|
|
<h3 class="footer-heading">회사 정보</h3>
|
|
<ul class="footer-list">
|
|
<li><strong>밍글 스튜디오</strong></li>
|
|
<li>대표: 김희진</li>
|
|
<li>사업자등록번호: 208-12-73755</li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-section">
|
|
<h3 class="footer-heading">연락처</h3>
|
|
<ul class="footer-list">
|
|
<li><a href="tel:+82-10-9288-9190"><i class="fa-solid fa-phone" aria-hidden="true"></i> 010-9288-9190</a></li>
|
|
<li><a href="mailto:minglestudio@minglestudio.co.kr"><i class="fa-solid fa-briefcase" aria-hidden="true"></i> 비즈니스 문의</a></li>
|
|
<li><a href="mailto:help@minglestudio.co.kr"><i class="fa-solid fa-envelope" aria-hidden="true"></i> 예약 문의</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-section">
|
|
<h3 class="footer-heading">오시는 길</h3>
|
|
<ul class="footer-list">
|
|
<li><i class="fa-solid fa-location-dot" aria-hidden="true"></i> 인천광역시 부평구 주부토로 236</li>
|
|
<li>인천테크노밸리 U1센터 A동 B105호</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<p>© <script>document.write(new Date().getFullYear())</script> 밍글 스튜디오. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</footer> |