mirror of
https://github.com/markmanx/isoflow.git
synced 2025-02-07 20:10:47 +00:00
37 lines
600 B
TypeScript
37 lines
600 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
export default {
|
||
|
darkMode: false,
|
||
|
logo: () => {
|
||
|
return (
|
||
|
<span
|
||
|
style={{
|
||
|
fontFamily: 'Arial, sans-serif',
|
||
|
letterSpacing: '-0.02em',
|
||
|
fontWeight: 'bold',
|
||
|
fontSize: '1.2em'
|
||
|
}}
|
||
|
>
|
||
|
Isoflow Developer Documentation
|
||
|
</span>
|
||
|
);
|
||
|
},
|
||
|
nextThemes: {
|
||
|
defaultTheme: 'light'
|
||
|
},
|
||
|
project: {
|
||
|
link: 'https://github.com/markmanx/isoflow'
|
||
|
},
|
||
|
feedback: {
|
||
|
content: null
|
||
|
},
|
||
|
editLink: {
|
||
|
component: () => {
|
||
|
return null;
|
||
|
}
|
||
|
},
|
||
|
footer: {
|
||
|
component: null
|
||
|
}
|
||
|
};
|