From 23cd0056e0586436f7dea2e6b935a4661dba4b66 Mon Sep 17 00:00:00 2001 From: RezHackXYZ Date: Mon, 9 Jun 2025 10:42:32 +0530 Subject: [PATCH] adding flashcards! --- src/routes/+HomePage/tools.json | 6 ++++++ src/routes/flashcards/+page.svelte | 0 src/routes/nav.svelte | 4 ++++ 3 files changed, 10 insertions(+) create mode 100644 src/routes/flashcards/+page.svelte 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";