Skip to content
Merged

V2 #6

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
name="description"
content="This website is about digital books, pdf, E-book, much more"
/>
<meta name="keywords" content="digitalbookstore, garuav shegokar, learn web development1" />

<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
Expand Down
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Contact from './component/Contact'
import Header from './component/Header';
import Footer from './component/Footer';
import ReactGA from 'react-ga';
const TRACKING_ID = "UA-180090671-1"; // OUR_TRACKING_ID
const TRACKING_ID = process.env.REACT_APP_G_ANALYTICS_ID // OUR_TRACKING_ID
ReactGA.initialize(TRACKING_ID);
ReactGA.pageview(window.location.pathname);
function App() {
Expand Down
2 changes: 1 addition & 1 deletion src/component/SocialMedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const SocialMedia = () => {
<h2 className='text-center font-bold text-xl underline'>Social media</h2>
<div className='flex justify-center gap-x-2'>
{SocialIcons.map((item) => (
<div className='cursor-pointer' onClick={() => openUrl(item.url)}><img className='w-10 h-10' alt={item.name} src={item.img} /></div>
<div key={item.id} className='cursor-pointer' onClick={() => openUrl(item.url)}><img className='w-10 h-10' alt={item.name} src={item.img} /></div>
))}
</div>
</div>
Expand Down