fix:로고 아이콘을 favicon 이미지로 변경

- SVG 아이콘 대신 favicon-32x32.png 이미지 사용
- 모든 페이지 로고 통일 (favicon + SAM + 서브타이틀)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-01-31 18:55:40 +09:00
parent 2027c224dd
commit fc44275ca6
4 changed files with 5 additions and 21 deletions

View File

@@ -64,11 +64,7 @@ $mngUrl = (strpos($currentHost, 'sam.kr') !== false)
<div className="flex justify-between items-center h-16"> <div className="flex justify-between items-center h-16">
{/* Logo Section */} {/* Logo Section */}
<div className="flex items-center gap-3 cursor-pointer" onClick={() => window.location.href='../../index.php'}> <div className="flex items-center gap-3 cursor-pointer" onClick={() => window.location.href='../../index.php'}>
<div className="w-10 h-10 bg-slate-100 rounded-xl flex items-center justify-center"> <img src="../../img/favicon-32x32.png" alt="SAM" className="w-10 h-10 rounded-xl" />
<svg className="w-6 h-6 text-red-500" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
<path d="M12 19V5M5 12l7-7 7 7"/>
</svg>
</div>
<div className="flex flex-col"> <div className="flex flex-col">
<span className="text-lg font-bold text-slate-800 leading-tight">SAM</span> <span className="text-lg font-bold text-slate-800 leading-tight">SAM</span>
<span className="text-xs text-slate-500 leading-tight">Smart Automation Management</span> <span className="text-xs text-slate-500 leading-tight">Smart Automation Management</span>

View File

@@ -165,11 +165,7 @@ $mngUrl = (strpos($currentHost, 'sam.kr') !== false)
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16"> <div class="flex justify-between items-center h-16">
<div class="flex items-center gap-3 cursor-pointer" onclick="filterAssets('All')"> <div class="flex items-center gap-3 cursor-pointer" onclick="filterAssets('All')">
<div class="w-10 h-10 bg-slate-100 rounded-xl flex items-center justify-center"> <img src="img/favicon-32x32.png" alt="SAM" class="w-10 h-10 rounded-xl">
<svg class="w-6 h-6 text-red-500" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 19V5M5 12l7-7 7 7"/>
</svg>
</div>
<div class="flex flex-col"> <div class="flex flex-col">
<span class="text-lg font-bold text-slate-800 leading-tight">SAM</span> <span class="text-lg font-bold text-slate-800 leading-tight">SAM</span>
<span class="text-xs text-slate-500 leading-tight">Smart Automation Management</span> <span class="text-xs text-slate-500 leading-tight">Smart Automation Management</span>

View File

@@ -12,14 +12,10 @@ if ($depth > 0) {
$salesBasePath = str_repeat('../', $depth); $salesBasePath = str_repeat('../', $depth);
} }
// 로고 HTML 컴포넌트 (SAM 스타일) // 로고 HTML 컴포넌트 (SAM 스타일 - favicon 이미지 사용)
$samLogoHtml = ' $samLogoHtml = '
<a href="' . $salesBasePath . 'index.php" class="flex items-center gap-3 cursor-pointer"> <a href="' . $salesBasePath . 'index.php" class="flex items-center gap-3 cursor-pointer">
<div class="w-10 h-10 bg-slate-100 rounded-xl flex items-center justify-center"> <img src="' . $salesBasePath . 'img/favicon-32x32.png" alt="SAM" class="w-10 h-10 rounded-xl">
<svg class="w-6 h-6 text-red-500" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 19V5M5 12l7-7 7 7"/>
</svg>
</div>
<div class="flex flex-col"> <div class="flex flex-col">
<span class="text-lg font-bold text-slate-800 leading-tight">SAM</span> <span class="text-lg font-bold text-slate-800 leading-tight">SAM</span>
<span class="text-xs text-slate-500 leading-tight">Smart Automation Management</span> <span class="text-xs text-slate-500 leading-tight">Smart Automation Management</span>

View File

@@ -168,11 +168,7 @@
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 h-16 flex items-center justify-between"> <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 h-16 flex items-center justify-between">
<div className="flex items-center gap-6"> <div className="flex items-center gap-6">
<a href="../index.php" className="flex items-center gap-3 cursor-pointer"> <a href="../index.php" className="flex items-center gap-3 cursor-pointer">
<div className="w-10 h-10 bg-slate-100 rounded-xl flex items-center justify-center"> <img src="../img/favicon-32x32.png" alt="SAM" className="w-10 h-10 rounded-xl" />
<svg className="w-6 h-6 text-red-500" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
<path d="M12 19V5M5 12l7-7 7 7"/>
</svg>
</div>
<div className="flex flex-col"> <div className="flex flex-col">
<span className="text-lg font-bold text-slate-800 leading-tight">SAM</span> <span className="text-lg font-bold text-slate-800 leading-tight">SAM</span>
<span className="text-xs text-slate-500 leading-tight">영업관리</span> <span className="text-xs text-slate-500 leading-tight">영업관리</span>