diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4983332..3889131 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: pnpm - name: Install dependencies diff --git a/app/layout.tsx b/app/layout.tsx index fbc042f..fd32a69 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,7 @@ import Footer from "@/components/landing/Footer"; import ThemeToggle from "@/components/theme/ThemeToggle"; import { APP_URL } from "@/lib/constants"; +import { Analytics } from "@vercel/analytics/next"; import type { Metadata, Viewport } from "next"; import "./globals.css"; @@ -81,6 +82,7 @@ export default function RootLayout({
{children}