-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
195 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// app/tutorial/components/dataContent.js | ||
|
||
export const contentData = [ | ||
{ | ||
title: "Getting Started", | ||
path: "/tutorial", | ||
subItems: ["Welcome", "What's Here", "Ready?"], | ||
}, | ||
{ | ||
title: "Introduction: IRV RAs with RAIRE", | ||
path: "/tutorial/introduction", | ||
subItems: ["The Audit Process from Beginning to End"], | ||
}, | ||
{ | ||
title: "IRV elections and Visualizing Outcomes", | ||
path: "/tutorial/outcomes", | ||
subItems: ["How IRV Counts Work"], | ||
}, | ||
{ | ||
title: "Assertions for IRV winners", | ||
path: "/tutorial/assertion", | ||
subItems: [ | ||
"Not Eliminated Before (NEB) Assertions", | ||
"Not Eliminated Next (NEN) Assertions", | ||
"Simple assertions sometimes work", | ||
"One candidate dominates", | ||
"Two leading candidates", | ||
"Visualizing assertions", | ||
], | ||
}, | ||
{ | ||
title: "Risk Limiting Audits", | ||
path: "/tutorial/risk", | ||
subItems: [ | ||
"What is an RLA?", | ||
"Main Steps in Conducting an RLA", | ||
"Understanding Margin and Difficulty in RLAs", | ||
], | ||
}, | ||
{ | ||
title: "Using assertions to audit IRV outcomes", | ||
path: "/tutorial/usingassertion", | ||
subItems: ["NEB Assertions", "NEN Assertions", "Assertion scoring summary"], | ||
}, | ||
]; |