Added visitor analytics

This commit is contained in:
Akshay Kolli
2026-02-08 03:01:52 -05:00
parent e8e44c6162
commit 35f7254734
2 changed files with 37 additions and 0 deletions

View File

@@ -15,6 +15,8 @@ export const metadata: Metadata = {
description: "My personal website",
};
import { Analytics } from "../components/Analytics";
export default function RootLayout({
children,
}: Readonly<{
@@ -30,6 +32,7 @@ export default function RootLayout({
{children}
</main>
<Footer />
<Analytics />
</body>
</html>
);