Skip to content

Commit

Permalink
moved favicon from root into public folder
Browse files Browse the repository at this point in the history
  • Loading branch information
carvalholuigi25 committed Nov 3, 2023
1 parent d382385 commit f8985d8
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/app/[locale]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ export default function RootLayout({
return (
<html lang={locale}>
<head>
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png" />
<link rel="manifest" href="/images/favicon/site.webmanifest" />
</head>
<body className={inter.className + " " + `theme theme-${theme ?? 'default'}`} suppressHydrationWarning={true}>
<NextIntlClientProvider locale={locale} messages={useMessages()} timeZone={timeZone} now={useNow()}>
Expand Down

0 comments on commit f8985d8

Please sign in to comment.