mirror of
https://github.com/Lissy93/personal-security-checklist.git
synced 2024-10-01 01:35:37 -04:00
48 lines
1.9 KiB
TypeScript
48 lines
1.9 KiB
TypeScript
|
|
||
|
interface Article {
|
||
|
title: string;
|
||
|
description: string;
|
||
|
slug: string;
|
||
|
markdown: string;
|
||
|
warningMessage?: string;
|
||
|
}
|
||
|
|
||
|
const articles: Article[] = [
|
||
|
{
|
||
|
title: 'Why security matters?',
|
||
|
description: 'Why your personal digital security and privacy needs to be taken seriously.',
|
||
|
slug: 'importance-of-digital-security',
|
||
|
markdown: 'https://raw.githubusercontent.com/Lissy93/personal-security-checklist/old-version/0_Why_It_Matters.md',
|
||
|
},
|
||
|
{
|
||
|
title: 'Security List: Short Version',
|
||
|
description: 'Main lists too long? Here\'s the TL;DR',
|
||
|
slug: 'short-list',
|
||
|
markdown: 'https://raw.githubusercontent.com/Lissy93/personal-security-checklist/old-version/2_TLDR_Short_List.md',
|
||
|
},
|
||
|
{
|
||
|
title: 'Helpful Links',
|
||
|
description: 'Directory of links to additional tools, resources and information.',
|
||
|
slug: 'helpful-links',
|
||
|
markdown: 'https://raw.githubusercontent.com/Lissy93/personal-security-checklist/old-version/4_Privacy_And_Security_Links.md',
|
||
|
warningMessage: 'This article was written in 2020, and needs updating.',
|
||
|
},
|
||
|
{
|
||
|
title: 'Security Gadgets',
|
||
|
description: 'Handy hardware devices that can help protect your privacy and security.',
|
||
|
slug: 'privacy-gadgets',
|
||
|
markdown: 'https://raw.githubusercontent.com/Lissy93/personal-security-checklist/old-version/6_Privacy_and-Security_Gadgets.md',
|
||
|
warningMessage: 'This article is outdated and may contain incorrect information. '
|
||
|
+'It is recommended to verify the information before using any of the products listed.',
|
||
|
},
|
||
|
{
|
||
|
title: 'Privacy-Respecting Software',
|
||
|
description: 'The ultimate list of privacy-respecting software alternatives to popular apps and services.',
|
||
|
slug: 'awesome-privacy',
|
||
|
markdown: 'https://raw.githubusercontent.com/Lissy93/awesome-privacy/main/README.md',
|
||
|
warningMessage: 'This resource has moved! You can now access it at github.com/Lissy93/awesome-privacy',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export default articles;
|