kite-menu-lang

This commit is contained in:
2026-06-11 14:05:36 +03:00
parent dadde7eeea
commit f8ca2034e0
7 changed files with 206 additions and 42 deletions
+26
View File
@@ -0,0 +1,26 @@
export const dictionaries = {
tr: {
hero: {
location: "Akyaka · Muğla",
subtitle: "Akyaka'nın en keyifli menüsü",
},
footer: {
copyright: "© 2026 KiteBeach Akyaka. Tüm hakları saklıdır.",
createdBy: "Created by ayris.tech",
},
},
en: {
hero: {
location: "Akyaka · Mugla",
subtitle: "The most delightful menu in Akyaka",
},
footer: {
copyright: "© 2026 KiteBeach Akyaka. All rights reserved.",
createdBy: "Created by ayris.tech",
},
},
};
export const getDictionary = (lang: string) => {
return dictionaries[lang as keyof typeof dictionaries] || dictionaries['tr'];
};