We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48152bc commit 4c3af44Copy full SHA for 4c3af44
src/App.tsx
@@ -1,6 +1,6 @@
1
-
2
import React from 'react';
3
import { BrowserRouter, Routes, Route } from 'react-router-dom';
+import { SpeedInsights } from '@vercel/speed-insights/next';
4
import Index from './pages/Index';
5
import About from './pages/About';
6
import Contact from './pages/Contact';
@@ -13,6 +13,7 @@ import NotFound from './pages/NotFound';
13
const App: React.FC = () => {
14
return (
15
<BrowserRouter>
16
+ <SpeedInsights />
17
<Routes>
18
<Route path="/" element={<Index />} />
19
<Route path="/about" element={<About />} />
0 commit comments