feat: add Analytics

This commit is contained in:
blueeon
2024-03-29 10:52:07 +08:00
parent 691efcd8b7
commit b719a61306
3 changed files with 26 additions and 0 deletions
+2
View File
@@ -3,6 +3,7 @@ import { Inter } from "next/font/google";
import "./globals.css";
import Header from "./components/Header";
import Footer from "./components/Footer";
import { Analytics } from "@vercel/analytics/react"
const inter = Inter({ subsets: ["latin"] });
@@ -26,6 +27,7 @@ export default function RootLayout({
{children}
</main>
<Footer />
<Analytics />
</body>
</html>
);