Skip to content

Commit

Permalink
feat: favicon 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kingyong9169 committed Feb 19, 2025
1 parent 85365a6 commit b1fca18
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 0 deletions.
Binary file added apps/ziine/src/app/favicon.ico
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/ziine/src/app/icons/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/ziine/src/app/icons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/ziine/src/app/icons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions apps/ziine/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ export default function RootLayout({
<html lang='en' className={css({ height: '100%' })}>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<link rel='icon' type='image/png' sizes='16x16' href='/favicon.ico' />
<link rel='apple-touch-icon' href='/icons/apple-icon.png' type='image/png' sizes='180x180' />
<link rel='icon' type='image/png' sizes='16x16' href='/icons/favicon-16x16.png' />
<link rel='icon' type='image/png' sizes='32x32' href='/icons/favicon-32x32.png' />
<link rel='icon' type='image/png' sizes='192x192' href='/icons/android-chrome-192x192.png' />
<link rel='icon' type='image/png' sizes='512x512' href='/icons/android-chrome-512x512.png' />
</head>
<body className={css({ bg: 'grayscale.900' })}>
<Toaster
Expand Down

0 comments on commit b1fca18

Please sign in to comment.