Add greetings to the Dashboard for logged in users
This commit is contained in:
32
app/[locale]/(backend)/lib/dailyVerseData.ts
Normal file
32
app/[locale]/(backend)/lib/dailyVerseData.ts
Normal 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
|
||||
];
|
||||
Reference in New Issue
Block a user