diff --git a/frontend/src/components/ContentList.js b/frontend/src/components/ContentList.js
index b46d1aa..5af1a5b 100644
--- a/frontend/src/components/ContentList.js
+++ b/frontend/src/components/ContentList.js
@@ -1,11 +1,11 @@
import { ReactComponent as WifiIcon } from '../images/wifi.svg';
import { ReactComponent as BrowserIcon } from '../images/browser.svg';
-import { ReactComponent as DesktopIcon } from '../images/desktop.svg';
+import { ReactComponent as FingerprintIcon } from '../images/fingerprint.svg';
const Icons = {
wifi:
- Explanation: This fingerprint is a unique identifier that can be + Explanation: This is a unique identifier that can be used to follow you around the web. Even if you clear cookies, change - your IP or use private mode the fingerprint will stay the same. Enter + your IP or use private mode the hash will stay the same. Enter your name below and reload the page in private mode to test it out.
{saved ? ( diff --git a/frontend/src/components/StartBlock.js b/frontend/src/components/StartBlock.js index fb59f60..05da916 100644 --- a/frontend/src/components/StartBlock.js +++ b/frontend/src/components/StartBlock.js @@ -4,13 +4,8 @@ import ScanBlock from './ScanBlock'; const contentItems = [ { - title: 'Hardware', - icon: 'desktop', - body: 'Browsers reveal bits of identifiable information. This data can be combined into a digital fingerprint which can be used to follow you around the web.', - }, - { - title: 'Software', - icon: 'browser', + title: 'Fingerprint', + icon: 'fingerprint', body: 'Browsers reveal bits of identifiable information. This data can be combined into a digital fingerprint which can be used to follow you around the web.', }, { @@ -18,6 +13,11 @@ const contentItems = [ icon: 'wifi', body: 'Browsers reveal bits of identifiable information. This data can be combined into a digital fingerprint which can be used to follow you around the web.', }, + { + title: 'Software', + icon: 'browser', + body: 'Browsers reveal bits of identifiable information. This data can be combined into a digital fingerprint which can be used to follow you around the web.', + }, ]; const StartBlock = ({ onScanClick }) => { @@ -27,6 +27,7 @@ const StartBlock = ({ onScanClick }) => { document.getElementById('scanButton').value = 'Loading...'; await delay(100); startScan(); + window.scrollTo(0, 0); }; const startScan = useCallback(() => { @@ -37,10 +38,9 @@ const StartBlock = ({ onScanClick }) => {