diff --git a/public/index.html b/public/index.html index d734deb..210e477 100644 --- a/public/index.html +++ b/public/index.html @@ -15,6 +15,16 @@ + + + + + Match Five diff --git a/src/index.tsx b/src/index.tsx index 032464f..664f5c5 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3,6 +3,10 @@ import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; +import { initGA } from './utils/analytics'; + +// Initialize Google Analytics +initGA(); const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement