diff --git a/src/routes/+HomePage/tools.json b/src/routes/+HomePage/tools.json index ba3d937..abf3af8 100644 --- a/src/routes/+HomePage/tools.json +++ b/src/routes/+HomePage/tools.json @@ -28,5 +28,11 @@ "description": "The perfect idle screen with the timetable, time and date!", "link": "/IdleScreen", "icon": "nf-cod-table" + }, + { + "name": "Flashcards", + "description": "A simple flashcard app to help you learn new things.", + "link": "/flashcards", + "icon": "nf-md-card_multiple" } ] diff --git a/src/routes/flashcards/+page.svelte b/src/routes/flashcards/+page.svelte new file mode 100644 index 0000000..e69de29 diff --git a/src/routes/nav.svelte b/src/routes/nav.svelte index 8450774..b719e50 100644 --- a/src/routes/nav.svelte +++ b/src/routes/nav.svelte @@ -49,6 +49,10 @@ title: "Time Table", conformOnBack: null, }, + "/flashcards": { + title: "Flashcards", + conformOnBack: null, + }, }; import { OpenTab } from "./wordle/InfoAndSetings/main.svelte";