feat: add favicon and web app manifest files
This commit is contained in:
parent
42ca2e1df9
commit
e5359ea4d3
10 changed files with 84 additions and 1 deletions
|
@ -15,6 +15,23 @@ export default function RootLayout({
|
|||
}>) {
|
||||
return (
|
||||
<html lang='en' suppressHydrationWarning>
|
||||
<head>
|
||||
<link
|
||||
rel='icon'
|
||||
type='image/png'
|
||||
href='/favicon-96x96.png'
|
||||
sizes='96x96'
|
||||
/>
|
||||
<link rel='icon' type='image/svg+xml' href='/favicon-dark.svg' media='(prefers-color-scheme: dark)'/>
|
||||
<link rel='icon' type='image/svg+xml' href='/favicon-light.svg' media='(prefers-color-scheme: light)'/>
|
||||
<link rel='shortcut icon' href='/favicon.ico' />
|
||||
<link
|
||||
rel='apple-touch-icon'
|
||||
sizes='180x180'
|
||||
href='/apple-touch-icon.png'
|
||||
/>
|
||||
<link rel='manifest' href='/site.webmanifest' />
|
||||
</head>
|
||||
<body>
|
||||
<ThemeProvider
|
||||
attribute='class'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue