feat: Relay 브랜드 로고·favicon 전면 적용

사이드바·인증 화면 'R' 텍스트 로고를 브랜드 더블 셰브론 마크(RelayMark)로 교체.
favicon을 SVG+PNG+ICO 세트와 웹 매니페스트로 정비(create-vue 기본 아이콘 대체), 가운데 셰브론을 키워 작은 크기 가독성 개선.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-22 12:06:31 +09:00
parent 6767316cdb
commit 433901312d
25 changed files with 105 additions and 18 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 585 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

+13
View File
@@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512" role="img" aria-label="Relay app icon">
<defs>
<linearGradient id="relayGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#5b54f0"/>
<stop offset="1" stop-color="#4338ca"/>
</linearGradient>
</defs>
<rect width="512" height="512" rx="120" fill="url(#relayGrad)"/>
<g fill="none" stroke="#ffffff" stroke-width="52" stroke-linecap="round" stroke-linejoin="round">
<path d="M128 130 L256 256 L128 382"/>
<path d="M256 130 L384 256 L256 382"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 591 B

+28
View File
@@ -0,0 +1,28 @@
{
"name": "Relay — 사내 업무 지시 플랫폼",
"short_name": "Relay",
"description": "프로젝트 단위로 업무를 정리하고 담당자에게 지시하는 사내 업무 플랫폼",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#4f46e5",
"icons": [
{
"src": "/favicon.svg",
"type": "image/svg+xml",
"sizes": "any"
},
{
"src": "/relay-icon-256.png",
"type": "image/png",
"sizes": "256x256",
"purpose": "any maskable"
},
{
"src": "/relay-icon-512.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "any maskable"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB