diff --git a/src/app/providers.tsx b/src/app/providers.tsx index d480804..659185a 100644 --- a/src/app/providers.tsx +++ b/src/app/providers.tsx @@ -1,6 +1,7 @@ "use client"; import { ThemeProvider } from "next-themes"; +import { Analytics } from "@vercel/analytics/next"; export function Providers({ children }: { children: React.ReactNode }) { return ( @@ -12,6 +13,7 @@ export function Providers({ children }: { children: React.ReactNode }) { storageKey="magic-resume-theme" > {children} + ); }