Files
dashy/src/utils/defaults.js
2021-05-04 19:43:42 +01:00

49 lines
972 B
JavaScript

module.exports = {
pageInfo: {
title: 'Dashy',
description: '',
navLinks: [
{ title: 'Home', path: '/' },
{ title: 'Source', path: 'https://github.com/Lissy93/dashy' },
],
footerText: '',
},
appConfig: {},
iconSize: 'medium',
layout: 'auto',
theme: 'default',
fontAwesomeKey: '0821c65656',
builtInThemes: [
'nord',
'nord-frost',
'callisto',
'thebe',
'material',
'material-dark',
'dracula',
'matrix',
'matrix-red',
'hacker-girl',
'bee',
'raspberry-jam',
'tiger',
'colorful',
'high-contrast-light',
'high-contrast-dark',
],
visibleComponents: {
pageTitle: true,
navigation: true,
searchBar: true,
settings: true,
footer: true,
},
localStorageKeys: {
HIDE_WELCOME_BANNER: 'hideWelcomeHelpers',
LAYOUT_ORIENTATION: 'layoutOrientation',
COLLAPSE_STATE: 'collapseState',
ICON_SIZE: 'iconSize',
THEME: 'theme',
},
};