Skip to content

Commit

Permalink
GA
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Aug 16, 2024
1 parent ffb368a commit 9145321
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
18 changes: 18 additions & 0 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,19 @@
"lint": "next lint"
},
"dependencies": {
"@next/third-parties": "^14.2.5",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"next": "14.2.5"
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.5"
"typescript": "^5"
}
}
6 changes: 5 additions & 1 deletion web/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import WikipediaBrowser from '../components/WikipediaBrowser';
import React from "react";
import WikipediaBrowser from "../components/WikipediaBrowser";
import { GoogleAnalytics } from "@next/third-parties/google";


const Home: React.FC = () => {
return (
<div>
<WikipediaBrowser />
<GoogleAnalytics gaId="G-XFQJZD9P2K" />
</div>
);
};
Expand Down

0 comments on commit 9145321

Please sign in to comment.