diff --git a/README.md b/README.md index b9ce123..e5fb6df 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # React-Tag-Commander Documentation -Integrate Tag Commander with your React applications seamlessly using the `react-tag-commander` wrapper. +Integrate CommandersAct's tag container with your React applications seamlessly using the `react-tag-commander` wrapper. -- [Official Tag Commander website](https://www.commandersact.com/fr/produits/tagcommander/) -- **Note**: Familiarize yourself with [Tag Commander's primary documentation](https://community.commandersact.com/tagcommander/) before proceeding. +- [Official CommandersAct's tag container website](https://community.commandersact.com/tagcommander/) +- **Note**: Familiarize yourself with [CommandersAct's tag container's primary documentation](https://community.commandersact.com/tagcommander/) before proceeding. # Table of Contents - [Features](#features) diff --git a/tag-commander-sample-app/README.md b/tag-commander-sample-app/README.md index f065c6b..c81491b 100644 --- a/tag-commander-sample-app/README.md +++ b/tag-commander-sample-app/README.md @@ -1,6 +1,6 @@ -# Tag Commander Sample App +# CommandersAct's tag container sample app -Welcome to the Tag Commander Sample App! This is a demo app showcasing the npm package `react-tag-commander`. The app sets variables in Tag Commander, tracks pageviews, and provides a holistic summary on how the package can be used in a React Single Page Application (SPA). +Welcome to the CommandersAct's Tag Container sample app! This is a demo app showcasing the npm package `react-tag-commander`. The app sets variables in CommandersAct's tag container, tracks pageviews, and provides a holistic summary on how the package can be used in a React Single Page Application (SPA). ## Table of Contents @@ -12,11 +12,11 @@ Welcome to the Tag Commander Sample App! This is a demo app showcasing the npm p ## 1. Introduction -`react-tag-commander` is an npm package designed to facilitate the integration of Tag Commander in your React applications. This sample shop showcases its potential and demonstrates how it can be implemented in a real-world application scenario. +`react-tag-commander` is an npm package designed to facilitate the integration of CommandersAct's tag container in your React applications. This sample shop showcases its potential and demonstrates how it can be implemented in a real-world application scenario. ## 2. Features -- Set variables in Tag Commander dynamically. +- Set variables in CommandersAct's tag container dynamically. - Track pageviews efficiently. - Easily configure and customize your tags. diff --git a/tag-commander-sample-app/index.html b/tag-commander-sample-app/index.html index 3e13d67..e36f08c 100644 --- a/tag-commander-sample-app/index.html +++ b/tag-commander-sample-app/index.html @@ -4,7 +4,7 @@ - Tag Commander React Sample App + CommandersAct's tag container React Sample App
diff --git a/tag-commander-sample-app/package-lock.json b/tag-commander-sample-app/package-lock.json index 6c81b0c..03b4bc7 100644 --- a/tag-commander-sample-app/package-lock.json +++ b/tag-commander-sample-app/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "tag-commander-sample-app", "version": "1.0.0", + "license": "MIT", "dependencies": { "highlight.js": "^11.9.0", "marked": "^11.1.0", diff --git a/tag-commander-sample-app/src/components/shop/PageItem.jsx b/tag-commander-sample-app/src/components/shop/PageItem.jsx index 8ebc472..5b02209 100644 --- a/tag-commander-sample-app/src/components/shop/PageItem.jsx +++ b/tag-commander-sample-app/src/components/shop/PageItem.jsx @@ -3,7 +3,7 @@ import logo from '../../assets/Tag-Commander.png'; // Tell webpack this JS file function PageItem({ addToItems, defaultStoreCurrency }) { const [item, setItem] = useState({ - name: "Month Subscription", + name: "Shop Item 1", price: 99, quantity: 1 }); diff --git a/tag-commander-sample-app/src/components/shop/index.jsx b/tag-commander-sample-app/src/components/shop/index.jsx index d1eb6b2..958c590 100644 --- a/tag-commander-sample-app/src/components/shop/index.jsx +++ b/tag-commander-sample-app/src/components/shop/index.jsx @@ -13,7 +13,7 @@ const Shop = () => { ]}) }, []); - const [items, setItems] = useState([{ id: 0, name: "TagCommander", price: 20, quantity: 1 }]); + const [items, setItems] = useState([{ id: 0, name: "Shop Item 2", price: 20, quantity: 1 }]); const defaultStoreCurrency = "€"; const [isMsgDisplayed, setIsMsgDisplayed] = useState(false); const [currentId, setCurrentId] = useState(1);