chore: add prettier formatting
All checks were successful
CI / Lint, typecheck and build (push) Successful in 9m56s
All checks were successful
CI / Lint, typecheck and build (push) Successful in 9m56s
This commit is contained in:
@@ -27,7 +27,10 @@ export const metadata: Metadata = {
|
||||
manifest: "/manifest.json",
|
||||
appleWebApp: { capable: true, statusBarStyle: "black-translucent", title: "wtr." },
|
||||
icons: {
|
||||
icon: [{ url: "/icons/icon.svg", type: "image/svg+xml" }, { url: "/icons/icon-192.png", sizes: "192x192", type: "image/png" }],
|
||||
icon: [
|
||||
{ url: "/icons/icon.svg", type: "image/svg+xml" },
|
||||
{ url: "/icons/icon-192.png", sizes: "192x192", type: "image/png" },
|
||||
],
|
||||
apple: "/icons/icon-192.png",
|
||||
},
|
||||
};
|
||||
@@ -46,8 +49,12 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac
|
||||
return (
|
||||
<html lang="pl" suppressHydrationWarning data-scroll-behavior="smooth">
|
||||
<body className={`${inter.variable} font-sans`}>
|
||||
<Script id="wtr-theme" strategy="beforeInteractive">{themeScript}</Script>
|
||||
<Script id="wtr-language" strategy="beforeInteractive">{languageScript}</Script>
|
||||
<Script id="wtr-theme" strategy="beforeInteractive">
|
||||
{themeScript}
|
||||
</Script>
|
||||
<Script id="wtr-language" strategy="beforeInteractive">
|
||||
{languageScript}
|
||||
</Script>
|
||||
<Providers>
|
||||
<AppShell>{children}</AppShell>
|
||||
</Providers>
|
||||
|
||||
Reference in New Issue
Block a user