We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84e3488 commit 03b63aaCopy full SHA for 03b63aa
app/layout.jsx
@@ -11,7 +11,7 @@ export const metadata = {
11
export default function RootLayout({ children }) {
12
return (
13
<html lang="en">
14
- <body>
+ <head>
15
<Script
16
src={`https://www.googletagmanager.com/gtag/js?id=${GA_MEASUREMENT_ID}`}
17
strategy="afterInteractive"
@@ -24,6 +24,8 @@ export default function RootLayout({ children }) {
24
gtag('config', '${GA_MEASUREMENT_ID}');
25
`}
26
</Script>
27
+ </head>
28
+ <body>
29
{children}
30
</body>
31
</html>
0 commit comments