Added metadata and apple icon.
All checks were successful
Node.js CI / build (22.x) (pull_request) Successful in 59s
Vercel Preview Deployment / Deploy-Preview (pull_request) Successful in 1m10s
Node.js CI / build (18.x) (pull_request) Successful in 1m2s
Node.js CI / build (20.x) (pull_request) Successful in 59s

This commit is contained in:
2025-09-19 00:25:52 -04:00
parent c2f64e2874
commit 501211da7c
3 changed files with 15 additions and 3 deletions

View File

@@ -6,6 +6,11 @@ export default function RootLayout(props: { children: React.ReactNode }) {
return (
<html suppressHydrationWarning>
<link rel="icon" href="/images/logo/favicon/favicon.ico" sizes="any" />
<link
rel="apple-touch-icon"
href="/images/logo/favicon/apple-icon.png"
sizes="any"
/>
<body>
<Provider>{children}</Provider>
</body>