Skip to content

Commit

Permalink
move favicons to public folder
Browse files Browse the repository at this point in the history
  • Loading branch information
manuindersekhon committed Sep 5, 2024
1 parent eb18fb0 commit 775b9b6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
8 changes: 4 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export default function RootLayout({ children }: Readonly<{ children: any }>) {
<html lang='en'>
<head>
<ColorSchemeScript defaultColorScheme='light' />
<link rel='shortcut icon' href='/images/favicon.ico' />
<link rel='apple-touch-icon' sizes='180x180' href='/images/apple-touch-icon.png' />
<link rel='icon' type='image/png' sizes='32x32' href='/images/favicon-32x32.png' />
<link rel='icon' type='image/png' sizes='16x16' href='/images/favicon-16x16.png' />
<link rel='shortcut icon' href='/favicon.ico' />
<link rel='apple-touch-icon' sizes='180x180' href='/apple-touch-icon.png' />
<link rel='icon' type='image/png' sizes='32x32' href='/favicon-32x32.png' />
<link rel='icon' type='image/png' sizes='16x16' href='/favicon-16x16.png' />
<meta charSet='utf-8' name='viewport' content='minimum-scale=1, initial-scale=1, width=device-width' />
</head>
<body>
Expand Down

0 comments on commit 775b9b6

Please sign in to comment.