GiniGen AI commited on
Commit ·
e12e4e0
1
Parent(s): 96d2b70
GINIGEN 공식 로고 적용 — nav 로고·favicon·og:image
Browse files- logo.png (가로형 1250x220) — 네비게이션 좌측 로고
- logo-stacked.png (1250x834) — favicon + apple-touch-icon + og:image
- .logo CSS: gradient text → flex+img, hover drop-shadow 글로우
- .logo-sub: 'AI' 텍스트를 둥근 보더 배지 스타일로 재설계
- og:image 절대 URL: hf.co/spaces/ginigen/AI/resolve/main/logo-stacked.png
- 컬러: 로고 원본(블루→퍼플) 유지 (옵션 A)
- index.html +25 -12
- logo-stacked.png +3 -0
- logo.png +3 -0
index.html
CHANGED
|
@@ -10,6 +10,9 @@
|
|
| 10 |
<meta property="og:description" content="진단(AX 종합병원) · 시뮬레이션(인공사회) · 생성(허그와트 바나나)의 3대 통합 플랫폼">
|
| 11 |
<meta property="og:type" content="website">
|
| 12 |
<meta property="og:url" content="https://ginigen.net">
|
|
|
|
|
|
|
|
|
|
| 13 |
<link href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css" rel="stylesheet">
|
| 14 |
<style>
|
| 15 |
:root {
|
|
@@ -61,22 +64,31 @@
|
|
| 61 |
}
|
| 62 |
.nav-left { display: flex; align-items: center; gap: 36px; }
|
| 63 |
.logo {
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
-webkit-background-clip: text;
|
| 68 |
-
-webkit-text-fill-color: transparent;
|
| 69 |
-
background-clip: text;
|
| 70 |
-
letter-spacing: -0.5px;
|
| 71 |
cursor: pointer;
|
| 72 |
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
}
|
| 74 |
.logo-sub {
|
| 75 |
font-size: 11px;
|
| 76 |
color: var(--text-muted);
|
| 77 |
-
font-weight:
|
| 78 |
-
|
| 79 |
-
|
|
|
|
|
|
|
| 80 |
}
|
| 81 |
.tabs { display: flex; gap: 6px; }
|
| 82 |
.tab {
|
|
@@ -646,8 +658,9 @@
|
|
| 646 |
<!-- NAVIGATION -->
|
| 647 |
<nav class="nav-container">
|
| 648 |
<div class="nav-left">
|
| 649 |
-
<a href="#home" class="logo" onclick="switchTab('home'); return false;">
|
| 650 |
-
|
|
|
|
| 651 |
</a>
|
| 652 |
<div class="tabs">
|
| 653 |
<button class="tab active" data-tab="home">홈</button>
|
|
|
|
| 10 |
<meta property="og:description" content="진단(AX 종합병원) · 시뮬레이션(인공사회) · 생성(허그와트 바나나)의 3대 통합 플랫폼">
|
| 11 |
<meta property="og:type" content="website">
|
| 12 |
<meta property="og:url" content="https://ginigen.net">
|
| 13 |
+
<meta property="og:image" content="https://huggingface.co/spaces/ginigen/AI/resolve/main/logo-stacked.png">
|
| 14 |
+
<link rel="icon" type="image/png" href="logo-stacked.png">
|
| 15 |
+
<link rel="apple-touch-icon" href="logo-stacked.png">
|
| 16 |
<link href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css" rel="stylesheet">
|
| 17 |
<style>
|
| 18 |
:root {
|
|
|
|
| 64 |
}
|
| 65 |
.nav-left { display: flex; align-items: center; gap: 36px; }
|
| 66 |
.logo {
|
| 67 |
+
display: flex;
|
| 68 |
+
align-items: center;
|
| 69 |
+
gap: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
cursor: pointer;
|
| 71 |
text-decoration: none;
|
| 72 |
+
height: 32px;
|
| 73 |
+
}
|
| 74 |
+
.logo-img {
|
| 75 |
+
height: 26px;
|
| 76 |
+
width: auto;
|
| 77 |
+
display: block;
|
| 78 |
+
filter: drop-shadow(0 0 14px rgba(167, 139, 250, 0.32));
|
| 79 |
+
transition: filter 0.25s ease;
|
| 80 |
+
}
|
| 81 |
+
.logo:hover .logo-img {
|
| 82 |
+
filter: drop-shadow(0 0 18px rgba(167, 139, 250, 0.55));
|
| 83 |
}
|
| 84 |
.logo-sub {
|
| 85 |
font-size: 11px;
|
| 86 |
color: var(--text-muted);
|
| 87 |
+
font-weight: 600;
|
| 88 |
+
letter-spacing: 1.2px;
|
| 89 |
+
padding: 3px 7px;
|
| 90 |
+
border: 1px solid var(--border);
|
| 91 |
+
border-radius: 6px;
|
| 92 |
}
|
| 93 |
.tabs { display: flex; gap: 6px; }
|
| 94 |
.tab {
|
|
|
|
| 658 |
<!-- NAVIGATION -->
|
| 659 |
<nav class="nav-container">
|
| 660 |
<div class="nav-left">
|
| 661 |
+
<a href="#home" class="logo" onclick="switchTab('home'); return false;" aria-label="GiniGen AI 홈">
|
| 662 |
+
<img src="logo.png" alt="GiniGen" class="logo-img">
|
| 663 |
+
<span class="logo-sub">AI</span>
|
| 664 |
</a>
|
| 665 |
<div class="tabs">
|
| 666 |
<button class="tab active" data-tab="home">홈</button>
|
logo-stacked.png
ADDED
|
Git LFS Details
|
logo.png
ADDED
|
Git LFS Details
|