diff --git a/package.json b/package.json
index 9cdf5ed..ac45d44 100644
--- a/package.json
+++ b/package.json
@@ -14,6 +14,7 @@
"dependencies": {
"@dimforge/rapier2d": "^0.11.2",
"@tldraw/tldraw": "2.0.2",
+ "@vercel/analytics": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3"
@@ -29,4 +30,4 @@
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-wasm": "^3.2.2"
}
-}
\ No newline at end of file
+}
diff --git a/src/App.tsx b/src/App.tsx
index fa69277..1994839 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,3 +1,4 @@
+import { inject } from '@vercel/analytics';
import "@tldraw/tldraw/tldraw.css";
import "@/css/style.css"
import React, { useEffect, useState } from "react";
@@ -9,6 +10,7 @@ import { useCanvas } from "@/hooks/useCanvas"
import { createShapes } from "@/utils";
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import { Contact } from "@/components/Contact";
+inject();
ReactDOM.createRoot(document.getElementById("root")!).render();
@@ -23,6 +25,7 @@ function App() {
} />
+
);
};