refactor: rename HomePage to Home

This commit is contained in:
2023-06-05 21:27:33 +01:00
parent 9f90a14e16
commit 2c73035c63
3 changed files with 26 additions and 0 deletions

View File

@@ -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: <Home />,
},
],
};
export default HomeConfig;

View File

@@ -0,0 +1,3 @@
const locale = {};
export default locale;