Skip to content

Commit 01d4c40

Browse files
committed
⚙ chore(#168): manifest.json 추가 및 theme-color 설정
1 parent 67a3e8a commit 01d4c40

7 files changed

Lines changed: 33 additions & 3 deletions

File tree

public/icon_512_maskable.png

28.4 KB
Loading

public/icon_512_rounded.png

35.7 KB
Loading

public/manifest.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"theme_color": "#444d9b",
3+
"background_color": "#060811",
4+
"icons": [
5+
{
6+
"purpose": "maskable",
7+
"sizes": "512x512",
8+
"src": "icon_512_maskable.png",
9+
"type": "image/png"
10+
},
11+
{
12+
"purpose": "any",
13+
"sizes": "512x512",
14+
"src": "icon_512_rounded.png",
15+
"type": "image/png"
16+
}
17+
],
18+
"orientation": "any",
19+
"display": "standalone",
20+
"dir": "auto",
21+
"lang": "ko",
22+
"name": "레터링",
23+
"short_name": "레터링",
24+
"description": "편지로 수놓는 나의 스페이스",
25+
"start_url": "https://www.lettering.world",
26+
"scope": "https://www.lettering.world",
27+
"id": "https://www.lettering.world"
28+
}

src/app/layout.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ export const metadata = {
77
titleTemplate: '%s - 레터링',
88
description:
99
'다양한 우주 행성 그리고 별빛이 담긴 편지지로 마음을 형상화한 편지를 보관해보세요.',
10+
manifest: '/manifest.json',
1011
icons: {
11-
icon: '/favicon_16.png'
12+
icon: '/icon_16.png'
1213
},
1314
openGraph: {
1415
site_name: '레터링',
@@ -40,8 +41,9 @@ export default function RootLayout({
4041
name="google-site-verification"
4142
content={process.env.NEXT_PUBLIC_GOOGLE_SEARCH_CONSOLE}
4243
/>
43-
<link rel="apple-touch-icon" href="/favicon_114.png"></link>
44-
<link rel="shortcut icon" href="/favicon_72.png"></link>
44+
<meta name="theme-color" content="#444d9b" />
45+
<link rel="apple-touch-icon" href="/icon_114.png"></link>
46+
<link rel="shortcut icon" href="/icon_72.png"></link>
4547
{/* Maze Snippet */}
4648
<script
4749
dangerouslySetInnerHTML={{

0 commit comments

Comments
 (0)