feat: analytics
This commit is contained in:
parent
43174b009e
commit
7fd01c3d2f
1 changed files with 4 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import Script from "next/script";
|
||||||
import { Lexend } from "next/font/google";
|
import { Lexend } from "next/font/google";
|
||||||
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
@ -20,9 +21,10 @@ export default function RootLayout({
|
||||||
}>) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${lexend.className} antialiased flex flex-col items-center`}>
|
<body className={`${lexend.className} antialiased flex flex-col items-center min-h-screen`}>
|
||||||
<Header />
|
<Script defer src="https://analytics.trafficlunar.net/script.js" data-website-id="bc530384-9b7d-471a-b2e3-f9859da50c24" />
|
||||||
|
|
||||||
|
<Header />
|
||||||
<div className="px-4 py-8 max-w-7xl w-full">{children}</div>
|
<div className="px-4 py-8 max-w-7xl w-full">{children}</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue