We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df1286e commit 11ba835Copy full SHA for 11ba835
web/app/root.tsx
@@ -23,6 +23,10 @@ export const links: Route.LinksFunction = () => [
23
type: 'font/otf',
24
crossOrigin: 'anonymous',
25
},
26
+ {
27
+ rel: 'manifest',
28
+ href: '/manifest.webmanifest',
29
+ },
30
];
31
32
export function Layout({ children }: { children: React.ReactNode }) {
@@ -31,6 +35,7 @@ export function Layout({ children }: { children: React.ReactNode }) {
35
<head>
36
<meta charSet='utf-8' />
33
37
<meta name='viewport' content='width=device-width, initial-scale=1, interactive-widget=resizes-content' />
38
+ <meta name='theme-color' content='#ffffff' />
34
39
<Meta />
40
<Links />
41
</head>
0 commit comments