Add greetings to the Dashboard for logged in users

This commit is contained in:
2026-02-06 22:57:25 +01:00
parent d77046194a
commit 3f7369fc86
5 changed files with 63 additions and 5 deletions

View File

@@ -0,0 +1,32 @@
// Local data storage for development without DB
// Each object represents a verse for a specific day
export interface localizedContent {
en: string;
de: string;
ru: string;
}
export interface BibleVerse {
reference: string;
content: localizedContent;
}
export const bibleVerses: BibleVerse[] = [
{
reference: "Epheser 2:19",
content: {
en: "So then you are no longer strangers and aliens...",
de: "So seid ihr nun nicht mehr Gäste und Fremdlinge...",
ru: "Итак вы уже не чужие и не пришельцы..."
}
},
{
reference: "Psalm 23:1",
content: {
en: "The Lord is my shepherd...",
de: "Der Herr ist mein Hirte...",
ru: "Господь — Пастырь мой..."
}
},
// Add as many as you want here
];