diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 1d57a670b7..809a353d6b 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -21,5 +21,5 @@ jobs:
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- - name: Run lint
- run: pnpm lint
+ - name: Run check
+ run: pnpm check
diff --git a/.gitignore b/.gitignore
index 864e97de91..05bfb89a1e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -42,3 +42,5 @@ yarn-error.log*
/playwright-report/
/blob-report/
/playwright/*
+
+next-env.d.ts
\ No newline at end of file
diff --git a/app/layout.tsx b/app/layout.tsx
index 66db5da925..3179bac86f 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,7 +1,9 @@
+import { Analytics } from "@vercel/analytics/next";
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Toaster } from "sonner";
import { ThemeProvider } from "@/components/theme-provider";
+import "katex/dist/katex.min.css";
import "./globals.css";
import { SessionProvider } from "next-auth/react";
@@ -81,6 +83,7 @@ export default function RootLayout({
{children}
+