This commit is contained in:
2026-08-06 09:01:39 -05:00
parent ce724662d4
commit 50087f3c15
2 changed files with 18 additions and 8 deletions

View File

@@ -18,13 +18,13 @@ export const metadata: Metadata = {
robots: isIndexable
? { index: true, follow: true }
: { index: false, follow: false },
icons: {
icon: [
{ url: '/favicon1.png', sizes: '2048x2048', type: 'image/png' },
],
shortcut: '/favicon1.png',
apple: '/favicon1.png',
},
icons: {
icon: [
{ url: '/favicon1.png', sizes: '2048x2048', type: 'image/png' },
],
shortcut: '/favicon1.png',
apple: '/favicon1.png',
},
twitter: {
card: 'summary_large_image',
site: '@qrmaster',
@@ -63,9 +63,17 @@ export default function RootLayout({
<FacebookPixel />
</Suspense>
{children}
{process.env.NEXT_PUBLIC_UMAMI_SRC && process.env.NEXT_PUBLIC_UMAMI_ID && (
<Script
defer
src={process.env.NEXT_PUBLIC_UMAMI_SRC}
data-website-id={process.env.NEXT_PUBLIC_UMAMI_ID}
strategy="afterInteractive"
/>
)}
</Providers>
</Suspense>
</body>
</html>
);
}
}