Feat: Add analytics

This commit is contained in:
Gabe Farrell 2024-04-03 05:14:29 +00:00
parent 7aec2e828a
commit 7aa133a900
3 changed files with 15 additions and 0 deletions

View file

@ -3,6 +3,7 @@ import { Box, Container } from '@mui/material';
import { Outlet } from 'react-router-dom';
import Header from './Components/Header';
import Footer from './Components/Footer';
import { Analytics } from "@vercel/analytics/react"
// TODO:
// - Leaderboard past #25 (pagination)
@ -22,6 +23,7 @@ function App() {
<Outlet />
</Box>
<Footer/>
<Analytics />
</Box>
</Container>
);