1
0
Fork 0
mirror of https://gitbruv.vercel.app/api/git/bruv/gitbruv.git synced 2025-12-20 23:24:09 +01:00

add analytics

This commit is contained in:
Ahmet Kilinc 2025-12-20 11:20:48 +00:00
parent 5fa299cc9a
commit d589bad9d5
3 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,6 @@
import type { Metadata } from "next";
import { Toaster } from "@/components/ui/sonner";
import { Analytics } from "@vercel/analytics/next";
import "./globals.css";
export const metadata: Metadata = {
@ -17,6 +18,7 @@ export default function RootLayout({
<body className="min-h-screen">
{children}
<Toaster richColors position="top-right" />
<Analytics />
</body>
</html>
);