Fix : 이메일 및 행사 기간 연장 포트폴리오 추가

This commit is contained in:
KINDNICK 2025-11-27 00:01:19 +09:00
parent 1f49a2067b
commit 068fac72bf
10 changed files with 133 additions and 54 deletions

View File

@ -18,7 +18,9 @@
"Bash(curl:*)",
"Bash(netstat:*)",
"Bash(ipconfig)",
"Bash(ping:*)"
"Bash(ping:*)",
"Bash(dir:*)",
"Bash(nul)"
],
"deny": [],
"ask": []

View File

@ -6,6 +6,8 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
This is the official website for 밍글 스튜디오 (Mingle Studio), a motion capture studio located in Incheon, South Korea. The website is a multi-page static site built with vanilla HTML, CSS, and JavaScript, showcasing motion capture services, studio galleries, and client portfolios.
**Tech Stack:** Pure HTML5, CSS3 (with CSS Variables), Vanilla JavaScript (ES6+), no framework dependencies
## Architecture & Structure
### Page Architecture
@ -19,8 +21,9 @@ The site follows a modular component-based structure:
### Component Loading System
The site uses a dynamic component loading system implemented in `js/common.js`:
- Header and footer are loaded via `fetch()` API from `components/` directory
- Fallback system: Static backup footer is hidden when dynamic loading succeeds
- **Fallback System**: Pages should include a static backup footer in HTML that gets hidden when dynamic loading succeeds (check `backupFooter` logic in `loadComponents()`)
- Components are initialized after DOM load with proper error handling
- Loading sequence: `showPageLoading()``loadComponents()``initLazyLoading()``hidePageLoading()`
### CSS Architecture
- **CSS Variables**: Defined in `:root` of `common.css` with motion capture/VTuber orange theme
@ -30,20 +33,8 @@ The site uses a dynamic component loading system implemented in `js/common.js`:
## Development Commands
### Quick Start (권장)
**Windows:**
```cmd
# 더블클릭으로 실행
start-server.bat
```
### Server Options
**macOS/Linux:**
```bash
# 터미널에서 실행
./start-server.sh
```
### Manual Server Start
**Node.js (권장):**
```bash
npm run dev # http://localhost:8000
@ -52,29 +43,45 @@ npm run serve # 같은 기능
npm test # 도움말 + 서버 시작
```
**Python:**
**Python (Alternative):**
```bash
python server.py # 커스텀 서버 (추천)
python -m http.server 8000 # 기본 서버
python server.py # Custom server with auto-open on port 8001
python -m http.server 8000 # Basic Python server on port 8000
```
**Note:** The custom Python server (`server.py`) uses port 8001 and includes automatic port detection, browser opening, and clean URL support (`.html` extension optional).
### Development Features
- **자동 브라우저 열기**: 서버 시작 시 자동으로 브라우저에서 사이트 열림
- **Clean URLs**: `.html` 확장자 없이 접근 가능 (`/about`, `/services` 등)
- **개발 최적화**: 캐시 비활성화, CORS 헤더 추가
- **오류 처리**: 포트 충돌 및 기본적인 오류 상황 처리
- **Auto Browser Opening**: Python server automatically opens http://localhost:8001 (or available port)
- **Clean URLs**: `.html` extension optional for access (e.g., `/about` works as `/about.html`)
- **Dev Optimizations**: Cache disabled, CORS headers added
- **Port Auto-Detection**: Python server finds available ports from 8001-8020 if default is occupied
- **Error Handling**: Port conflicts and basic error scenarios handled gracefully
### Available URLs
When using npm scripts (port 8000):
- Homepage: http://localhost:8000/
- About: http://localhost:8000/about
- Services: http://localhost:8000/services
- Services: http://localhost:8000/services
- Portfolio: http://localhost:8000/portfolio
- Gallery: http://localhost:8000/gallery
- Contact: http://localhost:8000/contact
- Q&A: http://localhost:8000/qna
When using `python server.py` (port 8001 or auto-detected):
- The server will display available URLs with the detected port
## Key Technical Details
### JavaScript Module System
- **Common Utilities** (`js/common.js`): Exports functions via `window.commonUtils` object for use in page-specific scripts
- Navigation handling with hamburger menu
- Notification system with 4 types (success, error, warning, info)
- Lazy loading for YouTube iframes and images using IntersectionObserver
- Loading state management (page-level and component-level)
- Utility functions: `debounce`, `throttle`, `isValidEmail`
- **Popup System** (`js/popup.js`): Cookie-based "don't show today" functionality for main page popups
### SEO Optimization
- Structured data (JSON-LD) with LocalBusiness schema for search engines
- Comprehensive meta tags including Open Graph, Twitter Cards, and Korean platform-specific tags
@ -108,7 +115,38 @@ python -m http.server 8000 # 기본 서버
- SOOP/streaming VODs: Direct iframe source for broadcast examples
### Navigation Updates
When adding new pages, update `components/header.html` navigation links and ensure corresponding CSS/JS files follow the naming convention.
When adding new pages, update `components/header.html` navigation links and ensure corresponding CSS/JS files follow the naming convention (`css/[page].css`, `js/[page].js`).
## Important Notes
### File Structure Conventions
- Each page has three files: `[page].html`, `css/[page].css`, `js/[page].js`
- Backup files may exist (e.g., `index_backup.html`, `index_new.html`) - these are not actively used
- All pages must include placeholders for dynamic components:
- `<div id="header-placeholder"></div>` for header
- `<div id="footer-placeholder"></div>` for footer
- Page-specific CSS and JS are loaded after common files for proper override capability
### Styling System
Access the orange motion capture theme via CSS variables defined in `common.css`:
```css
--primary-color: #ff8800;
--gradient-main: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
--navbar-height: 70px;
```
### Common Utilities Access
Page-specific scripts can access common functions via `window.commonUtils`:
```javascript
// Show notification
window.commonUtils.showNotification('Message', 'success');
// Validate email
window.commonUtils.isValidEmail('test@example.com');
// Use debounce/throttle
const debouncedFn = window.commonUtils.debounce(myFn, 300);
```
## Business Context

View File

@ -116,7 +116,8 @@ npx serve .
프로젝트에 대한 문의사항이 있으시면 연락주세요:
- **이메일**: hello@minglestudio.com
- **비지니스 문의**: minglestudio@minglestudio.co.kr
- **예약 문의**: help@minglestudio.co.kr
- **전화**: 010-1234-5678
- **주소**: 서울특별시 강남구 테헤란로 123

View File

@ -3,7 +3,7 @@
<div class="container" style="text-align:center;">
<div style="font-size:1.15rem;font-weight:700;letter-spacing:0.02em;">회사명: 밍글 스튜디오 | 대표: 김희진</div>
<div style="margin:0.3rem 0 0.2rem;">주소: (21330) 인천광역시 부평구 주부토로 236, 인천테크노밸리 A동 B105호</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 이메일: minglestudio.mocap@gmail.com</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 비지니스 문의: minglestudio@minglestudio.co.kr | 예약 문의: help@minglestudio.co.kr</div>
<div style="margin:0.3rem 0 0.2rem;">사업자등록번호: 208-12-73755</div>
<div style="color:#bbb;font-size:0.98rem;margin-top:0.7rem;">© 2025 밍글 스튜디오. All rights reserved.</div>
</div>

View File

@ -86,11 +86,18 @@
<a href="tel:+82-10-9288-9190" class="contact-link">010-9288-9190</a>
</div>
<div class="contact-card">
<div class="contact-icon">💼</div>
<h3>비지니스 문의</h3>
<p>제휴 및 협력 문의</p>
<a href="mailto:minglestudio@minglestudio.co.kr" class="contact-link">minglestudio@minglestudio.co.kr</a>
</div>
<div class="contact-card">
<div class="contact-icon">✉️</div>
<h3>이메일 문의</h3>
<h3>예약 및 문의</h3>
<p>24시간 접수 가능</p>
<a href="mailto:minglestudio.mocap@gmail.com" class="contact-link">minglestudio.mocap@gmail.com</a>
<a href="mailto:help@minglestudio.co.kr" class="contact-link">help@minglestudio.co.kr</a>
</div>
<div class="contact-card">
@ -184,7 +191,7 @@
<div class="container" style="text-align:center;">
<div style="font-size:1.15rem;font-weight:700;letter-spacing:0.02em;">회사명: 밍글 스튜디오 | 대표: 김희진</div>
<div style="margin:0.3rem 0 0.2rem;">주소: (21330) 인천광역시 부평구 주부토로 236, 인천테크노밸리 A동 B105호</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 이메일: minglestudio.mocap@gmail.com</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 비지니스 문의: minglestudio@minglestudio.co.kr | 예약 문의: help@minglestudio.co.kr</div>
<div style="margin:0.3rem 0 0.2rem;">사업자등록번호: 208-12-73755</div>
<div style="color:#bbb;font-size:0.98rem;margin-top:0.7rem;">© 2025 밍글 스튜디오. All rights reserved.</div>
</div>

View File

@ -176,6 +176,18 @@
</section>
<div id="footer-placeholder"></div>
<!-- 백업 푸터 (JavaScript 로드 실패 시) -->
<footer class="section" style="background:#222;color:#fff;padding:2.5rem 0 1.2rem;">
<div class="container" style="text-align:center;">
<div style="font-size:1.15rem;font-weight:700;letter-spacing:0.02em;">회사명: 밍글 스튜디오 | 대표: 김희진</div>
<div style="margin:0.3rem 0 0.2rem;">주소: (21330) 인천광역시 부평구 주부토로 236, 인천테크노밸리 A동 B105호</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 비지니스 문의: minglestudio@minglestudio.co.kr | 예약 문의: help@minglestudio.co.kr</div>
<div style="margin:0.3rem 0 0.2rem;">사업자등록번호: 208-12-73755</div>
<div style="color:#bbb;font-size:0.98rem;margin-top:0.7rem;">© 2025 밍글 스튜디오. All rights reserved.</div>
</div>
</footer>
<script src="js/common.js"></script>
<script src="js/gallery.js"></script>
</body>

View File

@ -105,7 +105,7 @@
"description": "인천 모션캡쳐 전문 스튜디오 - OptiTrack 28대 카메라 시스템",
"url": "https://minglestudio.co.kr",
"telephone": "010-9288-9190",
"email": "minglestudio.mocap@gmail.com",
"email": "help@minglestudio.co.kr",
"address": {
"@type": "PostalAddress",
"streetAddress": "주부토로 236, 인천테크노밸리 A동 B105호",
@ -191,7 +191,7 @@
"description": "OptiTrack 기반 28대 카메라 시스템으로 전신/페이셜 모션캡쳐 가능. 시간당 22만원(VAT 포함). 인천테크노밸리 위치.",
"url": "https://minglestudio.co.kr",
"telephone": "010-9288-9190",
"email": "minglestudio.mocap@gmail.com",
"email": "help@minglestudio.co.kr",
"address": {
"@type": "PostalAddress",
"streetAddress": "주부토로 236, 인천테크노밸리 A동 B105호",
@ -270,7 +270,7 @@
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+82-10-9288-9190",
"email": "minglestudio.mocap@gmail.com",
"email": "help@minglestudio.co.kr",
"contactType": "customer service",
"availableLanguage": "Korean"
},
@ -335,11 +335,11 @@
<div class="popup-info">
<div class="info-item">
<div class="info-label">이벤트 기간</div>
<div class="info-value">~ 12/31</div>
<div class="info-value">~ 2025년 2월 말</div>
</div>
<div class="info-item">
<div class="info-label">문의 메일</div>
<div class="info-value">minglestudio.mocap@gmail.com</div>
<div class="info-label">예약 문의</div>
<div class="info-value">help@minglestudio.co.kr</div>
</div>
</div>
@ -446,7 +446,7 @@
<div class="feature-icon">🎮</div>
</div>
<h3>실시간 스트리밍</h3>
<p>서비스 준비중 (곧 출시 예정)</p>
<p>스트리밍글 서비스로 라이브 방송 가능</p>
</div>
<div class="feature-card">
@ -616,7 +616,8 @@
</div>
<div class="contact-info-quick">
<span>📧 minglestudio.mocap@gmail.com</span>
<span>📧 예약: help@minglestudio.co.kr</span>
<span>💼 비지니스: minglestudio@minglestudio.co.kr</span>
<span>📍 인천 부평구 주부토로 236, 인천테크노밸리</span>
</div>
</div>
@ -630,7 +631,7 @@
<div class="container" style="text-align:center;">
<div style="font-size:1.15rem;font-weight:700;letter-spacing:0.02em;">회사명: 밍글 스튜디오 | 대표: 김희진</div>
<div style="margin:0.3rem 0 0.2rem;">주소: (21330) 인천광역시 부평구 주부토로 236, 인천테크노밸리 A동 B105호</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 이메일: minglestudio.mocap@gmail.com</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 비지니스 문의: minglestudio@minglestudio.co.kr | 예약 문의: help@minglestudio.co.kr</div>
<div style="margin:0.3rem 0 0.2rem;">사업자등록번호: 208-12-73755</div>
<div style="color:#bbb;font-size:0.98rem;margin-top:0.7rem;">© 2025 밍글 스튜디오. All rights reserved.</div>
</div>

View File

@ -172,8 +172,8 @@
<div class="video-card">
<div class="video-wrapper">
<iframe data-src="https://www.youtube.com/embed/nH7IdgqhugQ"
title="QWER 내 이름 맑음 CROA 커버"
<iframe data-src="https://www.youtube.com/embed/nH7IdgqhugQ"
title="QWER 내 이름 맑음 CROA 커버"
allowfullscreen loading="lazy"></iframe>
</div>
<div class="video-info">
@ -186,7 +186,24 @@
</div>
</div>
</div>
<div class="video-card">
<div class="video-wrapper">
<iframe data-src="https://www.youtube.com/embed/YO7-z_JxSjY"
title="첫사랑 (백아) | 치요 cover"
allowfullscreen loading="lazy"></iframe>
</div>
<div class="video-info">
<h3>첫사랑 (백아) | 치요 cover</h3>
<p>밍글 스튜디오에서 제작된 모션캡쳐 영상</p>
<div class="video-tags">
<span class="tag">치요</span>
<span class="tag">cover</span>
<span class="tag">크로아</span>
</div>
</div>
</div>
</div>
</div>
</section>
@ -547,8 +564,8 @@
<div class="tech-feature">
<div class="tech-icon">📡</div>
<h3>스트리밍 서비스</h3>
<p>현재 준비중 (곧 출시 예정)</p>
<h3>스트리밍 서비스</h3>
<p>실시간 라이브 방송 지원</p>
</div>
<div class="tech-feature">
@ -580,7 +597,7 @@
<div class="container" style="text-align:center;">
<div style="font-size:1.15rem;font-weight:700;letter-spacing:0.02em;">회사명: 밍글 스튜디오 | 대표: 김희진</div>
<div style="margin:0.3rem 0 0.2rem;">주소: (21330) 인천광역시 부평구 주부토로 236, 인천테크노밸리 A동 B105호</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 이메일: minglestudio.mocap@gmail.com</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 비지니스 문의: minglestudio@minglestudio.co.kr | 예약 문의: help@minglestudio.co.kr</div>
<div style="margin:0.3rem 0 0.2rem;">사업자등록번호: 208-12-73755</div>
<div style="color:#bbb;font-size:0.98rem;margin-top:0.7rem;">© 2025 밍글 스튜디오. All rights reserved.</div>
</div>

View File

@ -117,7 +117,7 @@
<div class="faq-answer">
<p>아래 방법으로 예약하실 수 있습니다:</p>
<ul>
<li><strong>📧 이메일:</strong> <a href="mailto:minglestudio.mocap@gmail.com?subject=[스튜디오 예약 문의] 밍글 스튜디오&body=안녕하세요. 밍글 스튜디오 대관 예약 문의 드립니다.%0A%0A■ 기본 정보%0A- 이용 예정일: (예: 2024년 12월 25일)%0A- 이용 시간: (예: 오후 2시 ~ 4시, 2시간)%0A- 참여 인원: 명%0A- 연락처: %0A- 이메일: %0A%0A■ 촬영 정보%0A- 촬영 목적: (예: 버튜버 방송, 게임 제작, 영상 콘텐츠 등)%0A- 예상 촬영 내용: %0A- 필요한 장비: (전신 모션캡쳐 / 페이셜 캡쳐 / 기타)%0A%0A■ 추가 요청사항%0A- 특별한 요구사항: %0A- 문의사항: %0A%0A■ 참고사항%0A- 최소 대관: 2시간 (220,000원, VAT 포함)%0A- 연장: 1시간당 110,000원%0A- 결제방법: 계좌이체 또는 현금 (카드결제 불가)%0A- 현금영수증/세금계산서 발행 가능%0A%0A빠른 시일 내에 답변 드리겠습니다.%0A감사합니다.">minglestudio.mocap@gmail.com</a></li>
<li><strong>📧 이메일:</strong> <a href="mailto:help@minglestudio.co.kr?subject=[스튜디오 예약 문의] 밍글 스튜디오&body=안녕하세요. 밍글 스튜디오 대관 예약 문의 드립니다.%0A%0A■ 기본 정보%0A- 이용 예정일: (예: 2024년 12월 25일)%0A- 이용 시간: (예: 오후 2시 ~ 4시, 2시간)%0A- 참여 인원: 명%0A- 연락처: %0A- 이메일: %0A%0A■ 촬영 정보%0A- 촬영 목적: (예: 버튜버 방송, 게임 제작, 영상 콘텐츠 등)%0A- 예상 촬영 내용: %0A- 필요한 장비: (전신 모션캡쳐 / 페이셜 캡쳐 / 기타)%0A%0A■ 추가 요청사항%0A- 특별한 요구사항: %0A- 문의사항: %0A%0A■ 참고사항%0A- 최소 대관: 2시간 (220,000원, VAT 포함)%0A- 연장: 1시간당 110,000원%0A- 결제방법: 계좌이체 또는 현금 (카드결제 불가)%0A- 현금영수증/세금계산서 발행 가능%0A%0A빠른 시일 내에 답변 드리겠습니다.%0A감사합니다.">help@minglestudio.co.kr</a></li>
<li><strong>📞 전화:</strong> 010-9288-9190</li>
<li><strong>📅 네이버 예약:</strong> <a href="https://m.booking.naver.com/booking/10/bizes/1468174/items/6949481" target="_blank">네이버 플레이스 실시간 예약</a></li>
</ul>
@ -131,7 +131,7 @@
<p>아래 양식을 복사하여 이메일로 문의해주세요:</p>
<div class="email-template" style="background: white; padding: var(--spacing-md); border-radius: var(--border-radius); font-family: monospace; font-size: 0.9rem; line-height: 1.6;">
<div><strong>제목:</strong> [스튜디오 대관 문의]</div>
<div><strong>받는 사람:</strong> minglestudio.mocap@gmail.com</div>
<div><strong>받는 사람:</strong> help@minglestudio.co.kr</div>
<br>
<div><strong>1. 성함 및 소속</strong></div>
<div style="color: #666; font-size: 0.85rem;">(개인의 경우 성함만, 기업인 경우 이용자분 성함과 소속을 함께 적어주세요)</div>
@ -159,7 +159,7 @@
</div>
<div style="margin-top: var(--spacing-md); text-align: center;">
<a href="mailto:minglestudio.mocap@gmail.com?subject=[스튜디오 대관 문의]" class="btn btn-primary">📧 이메일 바로 보내기</a>
<a href="mailto:help@minglestudio.co.kr?subject=[스튜디오 대관 문의]" class="btn btn-primary">📧 이메일 바로 보내기</a>
</div>
</div>
<p>최소 2주 전에 연락주시면 원활하게 준비가 가능합니다.</p>
@ -346,8 +346,9 @@
<span class="faq-toggle">+</span>
</div>
<div class="faq-answer">
<p><strong>실시간 스트리밍 서비스는 현재 준비중입니다.</strong></p>
<p>서비스 준비가 완료되는 대로 안내해드리겠습니다.</p>
<p><strong>네, 스트리밍글 서비스를 통해 실시간 스트리밍이 가능합니다.</strong></p>
<p>모션캡쳐 데이터를 실시간으로 송출하여 라이브 방송에 활용하실 수 있습니다.</p>
<p>자세한 내용은 Services 페이지의 스트리밍글 서비스 항목을 참고해주세요.</p>
</div>
</div>
@ -376,7 +377,7 @@
<p>견학 및 투어는 미리 문의를 통해 가능 여부를 확인해야 합니다:</p>
<ul>
<li><strong>사전 문의:</strong> 필수 (스튜디오 사정에 따라 거절될 수 있음)</li>
<li><strong>문의처:</strong> minglestudio.mocap@gmail.com</li>
<li><strong>문의처:</strong> help@minglestudio.co.kr</li>
<li><strong>견학 시간:</strong> 승인 시 협의 (약 30분 소요)</li>
<li><strong>비용:</strong> 무료</li>
</ul>
@ -409,7 +410,7 @@
<div class="container" style="text-align:center;">
<div style="font-size:1.15rem;font-weight:700;letter-spacing:0.02em;">회사명: 밍글 스튜디오 | 대표: 김희진</div>
<div style="margin:0.3rem 0 0.2rem;">주소: (21330) 인천광역시 부평구 주부토로 236, 인천테크노밸리 A동 B105호</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 이메일: minglestudio.mocap@gmail.com</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 비지니스 문의: minglestudio@minglestudio.co.kr | 예약 문의: help@minglestudio.co.kr</div>
<div style="margin:0.3rem 0 0.2rem;">사업자등록번호: 208-12-73755</div>
<div style="color:#bbb;font-size:0.98rem;margin-top:0.7rem;">© 2025 밍글 스튜디오. All rights reserved.</div>
</div>

View File

@ -607,7 +607,7 @@
<p>아래 양식을 복사하여 이메일로 문의해주세요:</p>
<div class="email-template">
<div class="email-field"><strong>제목:</strong> [스튜디오 대관 문의]</div>
<div class="email-field"><strong>받는 사람:</strong> minglestudio.mocap@gmail.com</div>
<div class="email-field"><strong>받는 사람:</strong> help@minglestudio.co.kr</div>
<div class="form-section">
<h5>1. 성함 및 소속</h5>
@ -647,7 +647,7 @@
</div>
<div class="email-send">
<a href="mailto:minglestudio.mocap@gmail.com?subject=[스튜디오 예약 문의] 밍글 스튜디오&body=안녕하세요. 밍글 스튜디오 대관 예약 문의 드립니다.%0A%0A■ 기본 정보%0A- 이용 예정일: (예: 2024년 12월 25일)%0A- 이용 시간: (예: 오후 2시 ~ 4시, 2시간)%0A- 참여 인원: 명%0A- 연락처: %0A- 이메일: %0A%0A■ 촬영 정보%0A- 촬영 목적: (예: 버튜버 방송, 게임 제작, 영상 콘텐츠 등)%0A- 예상 촬영 내용: %0A- 필요한 장비: (전신 모션캡쳐 / 페이셜 캡쳐 / 기타)%0A%0A■ 추가 요청사항%0A- 특별한 요구사항: %0A- 문의사항: %0A%0A■ 참고사항%0A- 최소 대관: 2시간 (220,000원, VAT 포함)%0A- 연장: 1시간당 110,000원%0A- 결제방법: 계좌이체 또는 현금 (카드결제 불가)%0A- 현금영수증/세금계산서 발행 가능%0A%0A빠른 시일 내에 답변 드리겠습니다.%0A감사합니다." class="btn btn-primary">
<a href="mailto:help@minglestudio.co.kr?subject=[스튜디오 예약 문의] 밍글 스튜디오&body=안녕하세요. 밍글 스튜디오 대관 예약 문의 드립니다.%0A%0A■ 기본 정보%0A- 이용 예정일: (예: 2024년 12월 25일)%0A- 이용 시간: (예: 오후 2시 ~ 4시, 2시간)%0A- 참여 인원: 명%0A- 연락처: %0A- 이메일: %0A%0A■ 촬영 정보%0A- 촬영 목적: (예: 버튜버 방송, 게임 제작, 영상 콘텐츠 등)%0A- 예상 촬영 내용: %0A- 필요한 장비: (전신 모션캡쳐 / 페이셜 캡쳐 / 기타)%0A%0A■ 추가 요청사항%0A- 특별한 요구사항: %0A- 문의사항: %0A%0A■ 참고사항%0A- 최소 대관: 2시간 (220,000원, VAT 포함)%0A- 연장: 1시간당 110,000원%0A- 결제방법: 계좌이체 또는 현금 (카드결제 불가)%0A- 현금영수증/세금계산서 발행 가능%0A%0A빠른 시일 내에 답변 드리겠습니다.%0A감사합니다." class="btn btn-primary">
📧 이메일 바로 보내기
</a>
</div>
@ -764,7 +764,7 @@
<div class="container" style="text-align:center;">
<div style="font-size:1.15rem;font-weight:700;letter-spacing:0.02em;">회사명: 밍글 스튜디오 | 대표: 김희진</div>
<div style="margin:0.3rem 0 0.2rem;">주소: (21330) 인천광역시 부평구 주부토로 236, 인천테크노밸리 A동 B105호</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 이메일: minglestudio.mocap@gmail.com</div>
<div style="margin:0.3rem 0 0.2rem;">전화: 010-9288-9190 | 비지니스 문의: minglestudio@minglestudio.co.kr | 예약 문의: help@minglestudio.co.kr</div>
<div style="margin:0.3rem 0 0.2rem;">사업자등록번호: 208-12-73755</div>
<div style="color:#bbb;font-size:0.98rem;margin-top:0.7rem;">© 2025 밍글 스튜디오. All rights reserved.</div>
</div>