From c798e59540b85b879caf7e3de2d62b2f22b875c6 Mon Sep 17 00:00:00 2001 From: Jan Schaumann Date: Tue, 15 Jan 2019 12:55:50 -0500 Subject: [PATCH] add a section on privacy screens --- config/data.js | 2 ++ config/privacyScreen.js | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 config/privacyScreen.js diff --git a/config/data.js b/config/data.js index e544ed6..e63c396 100644 --- a/config/data.js +++ b/config/data.js @@ -13,6 +13,7 @@ import appPermissions from './appPermissions'; import socialMedia from './socialMedia'; import phishing from './phishing'; import webcam from './webcam'; +import privacyScreen from './privacyScreen'; export default { passwordManager, @@ -23,6 +24,7 @@ export default { creditFreeze, dns, vpn, + privacyScreen, webcam, browsers, searchEngine, diff --git a/config/privacyScreen.js b/config/privacyScreen.js new file mode 100644 index 0000000..d1544ad --- /dev/null +++ b/config/privacyScreen.js @@ -0,0 +1,13 @@ +export default { + id: 'privacyScreen', + title: 'Use a laptop privacy screen', + description: `Protect yourself from people shoulder-surfing and use your laptop in private even when working in a public space, such as a cafe or on a plane. The privacy filter blocks side views outside the 60 degree angle, thereby ensuring that people around you cannot view your screen without impeding your ability to work in open workspaces or on the go. + `, + resources: [ + { + name: 'Laptop Privacy Screen Reiews', + url: + 'https://www.bestconsumerreviews.com/laptop-privacy-screen-reviews/', + }, + ], +};