Ready for production deployment with Dockerfile and i18n support

This commit is contained in:
2026-04-13 12:57:52 +03:00
parent 8346812507
commit b30376aa1d
32 changed files with 1078 additions and 117 deletions

31
app/dictionaries/en.json Normal file
View File

@@ -0,0 +1,31 @@
{
"nav": {
"discover": "Discover"
},
"about": {
"since": "Since 1980",
"title": "THE SALMAKIS LEGEND",
"p1": "In ancient times, in the bay known today as Bardakçı, there were a pristine lake and a beautiful nymph both named Salmakis. One day, while bathing, she saw Hermaphroditus, the son of Hermes and Aphrodite, and fell deeply in love with him.",
"p2": "However, Hermaphroditus rejected her. Devastated, Salmakis prayed to the gods to unite them forever. Taking pity on her, the gods merged their bodies into one. From that day on, Salmakis and Hermaphroditus lived eternally in a single body possessing dual nature.",
"company": "COMPANY INFORMATION"
},
"footer": {
"tagline": "A Heritage of Excellence Since 1980.",
"copyright": "Salmakis Group. All rights reserved.",
"created_by": "CREATED BY"
},
"sections": {
"resort": {
"title": "Resort",
"subtitle": "A Timeless Escape"
},
"villas": {
"title": "Villas",
"subtitle": "Private Luxury Reflections"
},
"yachting": {
"title": "Yachting",
"subtitle": "Aegean Elegance"
}
}
}

View File

@@ -0,0 +1,6 @@
export const getDictionary = async (locale: 'en' | 'tr') => {
if (locale === 'en') {
return import('./en.json').then((module) => module.default);
}
return import('./tr.json').then((module) => module.default);
};

31
app/dictionaries/tr.json Normal file
View File

@@ -0,0 +1,31 @@
{
"nav": {
"discover": "Keşfet"
},
"about": {
"since": "Since 1980",
"title": "SALMAKİS EFSANESİ",
"p1": "Eski zamanlarda, bugün Bardakçı olarak bilinen koyda, adı Salmakis olan bir göl varmış. Bu gölde kendisiyle aynı ismi taşıyan Salmakis adından güzel bir peri yaşarmış. Bir gün, Salmakis gölde yıkanırken Hermes ve Afroditin oğlu Hermafroditi görmüş ve ona aşık olmuş.",
"p2": "Ne var ki, Hermafrodit onu reddetmiş. Salmakis çok üzülmüş ve onları birleştirmeleri için tanrılara yalvarmış. Salmakise acıyan tanrılar, onları tek bir vücutta birleştirmiş. O günden sonra Salmakis ve Hermafrodit çift cinsiyete sahip tek bir vücutta yaşayıp gitmişler.",
"company": "ŞİRKET BİLGİLERİ"
},
"footer": {
"tagline": "A Heritage of Excellence Since 1980.",
"copyright": "Salmakis Group. Tüm hakları saklıdır.",
"created_by": "CREATED BY"
},
"sections": {
"resort": {
"title": "Resort",
"subtitle": "Zamansız Bir Kaçış"
},
"villas": {
"title": "Villas",
"subtitle": "Özel Lüks Yansımalar"
},
"yachting": {
"title": "Yachting",
"subtitle": "Ege Zarafeti"
}
}
}