Skip to content

Commit bdb4e54

Browse files
[#32] feat : 로고 적용 (OG 태그, favicon, Header)
1 parent 7ce6692 commit bdb4e54

File tree

7 files changed

+159
-9
lines changed

7 files changed

+159
-9
lines changed

index.html

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,26 @@
22
<html lang="ko">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>GoodGame</title>
7+
<title>BONBON - 굿게임</title>
8+
9+
<!-- Open Graph -->
10+
<meta property="og:type" content="website" />
11+
<meta property="og:title" content="BONBON - 굿게임" />
12+
<meta property="og:description" content="소통이 어려운 커플들을 위한 갈등 중재 서비스" />
13+
<meta property="og:image" content="/logo.svg" />
14+
<meta property="og:url" content="https://goodgame-fe.snowfrost.kr" />
15+
16+
<!-- Twitter Card -->
17+
<meta name="twitter:card" content="summary" />
18+
<meta name="twitter:title" content="BONBON - 굿게임" />
19+
<meta name="twitter:description" content="소통이 어려운 커플들을 위한 갈등 중재 서비스" />
20+
<meta name="twitter:image" content="/logo.svg" />
21+
22+
<!-- 기타 메타 -->
23+
<meta name="description" content="소통이 어려운 커플들을 위한 갈등 중재 서비스" />
24+
<meta name="theme-color" content="#fc8080" />
825
</head>
926
<body>
1027
<div id="root"></div>

public/logo.svg

Lines changed: 45 additions & 0 deletions
Loading

public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/assets/icons/graybox.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 47 additions & 0 deletions
Loading

src/assets/icons/logo-symbol.svg

Lines changed: 45 additions & 0 deletions
Loading

src/components/Layout/Header.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import Logo from "../../assets/icons/graybox.svg";
1+
import Logo from "../../assets/icons/logo-horizontal.svg";
22

33
export default function Header() {
44
return (
55
<header className="sticky top-0 z-50 bg-white">
66
<div className="mx-auto flex h-[67px] max-w-[430px] items-center px-5">
77
<img
88
src={Logo}
9-
alt="logo"
10-
className="h-6 object-contain"
9+
alt="BONBON 로고"
10+
className="h-8 object-contain"
1111
/>
1212
</div>
1313
</header>

0 commit comments

Comments
 (0)