mirror of
https://github.com/markmanx/isoflow.git
synced 2025-01-31 15:12:31 +00:00
36 lines
600 B
TypeScript
36 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
|
|
}
|
|
};
|