Files
rentalcalculator/src/app/theme-layouts/layout1/Layout1Config.js
2023-08-27 11:58:27 +01:00

63 lines
1.1 KiB
JavaScript

const config = {
title: 'Layout 1 - Dashboard',
defaults: {
mode: 'container',
containerWidth: 1590,
navbar: {
display: true,
folded: true,
position: 'left',
},
},
form: {
mode: {
title: 'Mode',
type: 'radio',
options: [
{
name: 'Boxed',
value: 'boxed',
},
{
name: 'Full Width',
value: 'fullwidth',
},
{
name: 'Container',
value: 'container',
},
],
},
containerWidth: {
title: 'Container Width (px)',
type: 'number',
},
navbar: {
type: 'group',
title: 'Navbar',
children: {
display: {
title: 'Display',
type: 'switch',
},
position: {
title: 'Position',
type: 'radio',
options: [
{
name: 'Left',
value: 'left',
},
{
name: 'Right',
value: 'right',
},
],
},
},
},
},
};
export default config;