Files
FossFLOW/packages/fossflow-lib/docs/theme.config.tsx
Stan 9021f5feca Migrate to monorepo structure
- Combined FossFLOW app and fossflow-lib into single repository
- Set up npm workspaces for managing both packages
- fossflow-lib uses Webpack for library build
- fossflow-app uses RSBuild for PWA application
- Added shared TypeScript configuration
- Simplified dependency management and development workflow
2025-08-13 22:06:26 +01:00

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
}
};