feat(logo): 이미지 파일명 영문 변경 + 서버 직접 배포 완료

- 지오정보기술로고.png → zioinfo-logo.png
- 지오정보기술사옥전경.png → zioinfo-building.png
- Header/Footer/Company.jsx 참조 경로 영문 수정
- SFTP 직접 배포로 서버 반영 완료

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
DESKTOP-TKLFCPR\ython 2026-05-31 15:51:02 +09:00
parent a613e53a19
commit 6b2511f051
6 changed files with 5 additions and 9 deletions

4
.gitignore vendored
View File

@ -44,10 +44,6 @@ logs/
node_modules/
npm-debug.log*
# Markdown docs (manual)
manual/*.md
*.md
!CLAUDE.md
# Claude Code local settings
.claude/settings.local.json

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -48,7 +48,7 @@ export default function Footer() {
{/* 회사 정보 */}
<div className="footer-brand">
<Link to="/" className="footer-logo">
<img src="/지오정보기술로고.png" alt="(주)지오정보기술 로고" height="36"
<img src="/zioinfo-logo.png" alt="(주)지오정보기술 로고" height="36"
style={{ filter: 'brightness(0) invert(1)' }}
onError={e => { e.target.src='/ziologo.png'; e.target.onerror = () => { e.target.style.display='none'; e.target.nextSibling.style.display='block'; }; }} />
<span className="footer-logo-text" style={{display:'none'}}>

View File

@ -105,7 +105,7 @@ export default function Header() {
<div className="header-inner container">
{/* 로고 */}
<Link to="/" className="logo" aria-label="(주)지오정보기술 홈으로">
<img src="/지오정보기술로고.png" alt="(주)지오정보기술 로고" height="40"
<img src="/zioinfo-logo.png" alt="(주)지오정보기술 로고" height="40"
onError={e => { e.target.src='/ziologo.png'; e.target.onerror = () => { e.target.style.display='none'; e.target.nextSibling.style.display='flex'; }; }} />
<span className="logo-text" style={{display:'none'}}>
<strong>Zio</strong>Info

View File

@ -48,7 +48,7 @@ function Greeting() {
<div className="ceo-photo">
<div className="ceo-avatar" style={{ overflow: 'hidden', background: 'none', padding: 0 }}>
<img
src="/지오정보기술사옥전경.png"
src="/zioinfo-building.png"
alt="(주)지오정보기술 사옥 전경"
style={{ width: '100%', height: '100%', objectFit: 'cover' }}
/>
@ -314,7 +314,7 @@ function CI() {
<div className="ci-logo-showcase">
<div className="ci-logo-box light" style={{ flex: 1, minHeight: '200px', display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', gap: '16px' }}>
<img
src="/지오정보기술로고.png"
src="/zioinfo-logo.png"
alt="(주)지오정보기술 로고"
style={{ maxWidth: '320px', width: '100%', objectFit: 'contain' }}
/>
@ -322,7 +322,7 @@ function CI() {
</div>
<div className="ci-logo-box dark" style={{ flex: 1, minHeight: '200px', display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', gap: '16px' }}>
<img
src="/지오정보기술로고.png"
src="/zioinfo-logo.png"
alt="(주)지오정보기술 로고 (다크)"
style={{ maxWidth: '320px', width: '100%', objectFit: 'contain', filter: 'brightness(0) invert(1)' }}
/>