fix:SAM 로고 및 favicon 스타일 변경
- 로고: 빨간색 화살표 아이콘 + SAM + 서브타이틀 - Favicon: SVG 빨간색 화살표로 변경 - 적용 페이지: index.php, barobill/etax, salesmanagement Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -64,10 +64,15 @@ $mngUrl = (strpos($currentHost, 'sam.kr') !== false)
|
||||
<div className="flex justify-between items-center h-16">
|
||||
{/* Logo Section */}
|
||||
<div className="flex items-center gap-3 cursor-pointer" onClick={() => window.location.href='../../index.php'}>
|
||||
<div className="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold text-lg shadow-lg shadow-blue-200">
|
||||
S
|
||||
<div className="w-10 h-10 bg-slate-100 rounded-xl flex items-center justify-center">
|
||||
<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">
|
||||
<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>
|
||||
</div>
|
||||
<span className="text-xl font-bold tracking-tight text-slate-900">CodeBridgeX <span className="text-blue-600">SAM</span></span>
|
||||
<div className="h-4 w-px bg-slate-200 mx-2 hidden sm:block"></div>
|
||||
<h1 className="text-sm font-bold text-slate-500 hidden sm:block">전자세금계산서</h1>
|
||||
</div>
|
||||
|
||||
11
index.php
11
index.php
@@ -165,10 +165,15 @@ $mngUrl = (strpos($currentHost, 'sam.kr') !== false)
|
||||
<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 items-center gap-3 cursor-pointer" onclick="filterAssets('All')">
|
||||
<div class="w-8 h-8 bg-brand-600 rounded-lg flex items-center justify-center text-white font-bold text-lg shadow-lg shadow-brand-200">
|
||||
S
|
||||
<div class="w-10 h-10 bg-slate-100 rounded-xl flex items-center justify-center">
|
||||
<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">
|
||||
<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>
|
||||
</div>
|
||||
<span class="text-xl font-bold tracking-tight text-slate-900">CodeBridgeX <span class="text-brand-600">SAM</span></span>
|
||||
</div>
|
||||
|
||||
<!-- Desktop Navigation -->
|
||||
|
||||
@@ -12,18 +12,26 @@ if ($depth > 0) {
|
||||
$salesBasePath = str_repeat('../', $depth);
|
||||
}
|
||||
|
||||
// 로고 HTML 컴포넌트
|
||||
// 로고 HTML 컴포넌트 (SAM 스타일)
|
||||
$samLogoHtml = '
|
||||
<a href="' . $salesBasePath . 'index.php" class="flex items-center gap-3 cursor-pointer">
|
||||
<div class="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center text-white font-bold text-lg shadow-lg shadow-blue-200">S</div>
|
||||
<span class="text-xl font-bold tracking-tight text-slate-900">CodeBridgeX <span class="text-blue-600">SAM</span></span>
|
||||
<div class="w-10 h-10 bg-slate-100 rounded-xl flex items-center justify-center">
|
||||
<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">
|
||||
<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>
|
||||
</div>
|
||||
</a>';
|
||||
|
||||
// SVG favicon (빨간색 화살표)
|
||||
$svgFavicon = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" rx="20" fill="%23f1f5f9"/><path d="M50 75V25M25 50l25-25 25 25" stroke="%23ef4444" stroke-width="8" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>';
|
||||
?>
|
||||
<!-- Favicon -->
|
||||
<!-- Favicon (SVG - 빨간색 화살표) -->
|
||||
<link rel="icon" type="image/svg+xml" href="<?= $svgFavicon ?>">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="<?= $salesBasePath ?>img/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="<?= $salesBasePath ?>img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="<?= $salesBasePath ?>img/favicon-16x16.png">
|
||||
<link rel="shortcut icon" href="<?= $salesBasePath ?>img/favicon.png">
|
||||
|
||||
<!-- Core Libraries -->
|
||||
<script src="https://cdn.tailwindcss.com?v=3.4.1"></script>
|
||||
|
||||
@@ -167,12 +167,17 @@
|
||||
<header className="bg-white border-b border-gray-100 sticky top-0 z-50">
|
||||
<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">
|
||||
<h1 className="text-lg font-bold text-slate-900 flex items-center gap-2">
|
||||
<div className="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center text-white">
|
||||
<LucideIcon name="briefcase" className="w-5 h-5" />
|
||||
<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">
|
||||
<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>
|
||||
<span>SAM 영업관리</span>
|
||||
</h1>
|
||||
<div className="flex flex-col">
|
||||
<span className="text-lg font-bold text-slate-800 leading-tight">SAM</span>
|
||||
<span className="text-xs text-slate-500 leading-tight">영업관리</span>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
{currentUser && (
|
||||
<div className="hidden md:flex items-center gap-2 px-3 py-1 bg-slate-100 rounded-full">
|
||||
|
||||
Reference in New Issue
Block a user