Files
notesnook/apps/mobile/features.ts
2022-07-09 23:35:52 +05:00

29 lines
956 B
TypeScript

import { FeatureType } from './src/components/sheets/new-feature';
export const features: FeatureType[] = [
{
title: 'A brand new editor',
body: 'We have switched to a completely new editor for Notesnook. Why? Because we wanted something that was extensible and future proof.'
},
{
title: 'Configurable toolbar',
body: "Everyone's deserves their own toolbar that fits their needs perfectly. Go to Settings > Editor Settings and build the toolbar you want."
},
{
title: 'Outline list',
body: 'Click on the + button in editor to try it out.'
},
{
title: 'Task list',
body: 'A new task list that keeps track of your progess and supports reordering items with drag & drop.'
},
{
title: 'Math support',
body: 'Inline and multi-line math support is here using KaTex.'
},
{
title: 'Overhaul Settings UI',
body: 'New Settings that are more organized and look miles better than before.'
}
];