종량제3 세션 작업. GBLS 브랜드 로고를 새 아이콘 형태로 통일. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
1.0 KiB
PHP
18 lines
1.0 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/** @var string $href Brand link target */
|
|
$href = $href ?? base_url();
|
|
/** @var string $linkClass Anchor + inner flex typography */
|
|
$linkClass = $linkClass ?? 'app-brand flex items-center gap-2 shrink-0 text-base font-semibold text-gray-800 tracking-tight hover:text-blue-600';
|
|
?>
|
|
<a href="<?= esc($href) ?>" class="<?= esc($linkClass, 'attr') ?>" title="GBLS (Garbage Bag Logistics System)">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="h-6 w-6 text-blue-900 translate-y-[1px] shrink-0" aria-hidden="true" focusable="false">
|
|
<path fill="currentColor" fill-rule="evenodd" d="M6 7.5 H18 V19.5 A1.5 1.5 0 0 1 16.5 21 H7.5 A1.5 1.5 0 0 1 6 19.5 Z M6 7.5 L8.5 4.2 H15.5 L18 7.5 Z M10.2 5.2 h3.6 a0.5 0.5 0 0 1 0 1 h-3.6 a0.5 0.5 0 0 1 0 -1 z"/>
|
|
</svg>
|
|
<span class="leading-none flex flex-col">
|
|
<strong class="font-extrabold tracking-wide">GBLS</strong>
|
|
<span class="text-[0.56rem] font-medium text-gray-400 tracking-tight whitespace-nowrap">Garbage Bag Logistics System</span>
|
|
</span>
|
|
</a>
|