feat: add icon and webmanifest

This commit is contained in:
2026-01-05 01:46:03 -03:00
parent ac0eea917e
commit 2e7ce54672
8 changed files with 42 additions and 3 deletions
+23 -3
View File
@@ -12,8 +12,28 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang='en'>
<body className={`antialiased`}>{children}</body>
</html>
<>
<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'
/>
<link rel='manifest' href='/site.webmanifest' />
<html lang='en'>
<body className={`antialiased`}>{children}</body>
</html>
</>
);
}