diff --git a/src/app/main/home/HomePage.js b/src/app/main/home/Home.js similarity index 100% rename from src/app/main/home/HomePage.js rename to src/app/main/home/Home.js diff --git a/src/app/main/home/HomeConfig.js b/src/app/main/home/HomeConfig.js new file mode 100644 index 0000000..5f85cf0 --- /dev/null +++ b/src/app/main/home/HomeConfig.js @@ -0,0 +1,23 @@ +import i18next from 'i18next'; + +import Home from './Home'; +import en from './i18n/en'; + +i18next.addResourceBundle('en', 'homePage', en); + +const HomeConfig = { + settings: { + layout: { + config: {}, + style: 'layout2', + }, + }, + routes: [ + { + path: '/', + element: , + }, + ], +}; + +export default HomeConfig; diff --git a/src/app/main/home/i18n/en.js b/src/app/main/home/i18n/en.js new file mode 100644 index 0000000..2d905d1 --- /dev/null +++ b/src/app/main/home/i18n/en.js @@ -0,0 +1,3 @@ +const locale = {}; + +export default locale;