21 lines
633 B
TypeScript
21 lines
633 B
TypeScript
export const defaultNotes: BaseNote[] = [
|
|
{
|
|
isRoot: true,
|
|
title: 'Your first note',
|
|
content: `Contexted is a **relational note-taking app**. Use it as your personal knowledge base, research assistent or just to map out thoughts.\n\n
|
|
### **How does it work?**
|
|
* Create a new note by typing words between [[brackets]]
|
|
* Click on **Mindmap mode** in the menu left to visualize your notes
|
|
\n
|
|
Let's get started!`,
|
|
created: 0,
|
|
modified: 0,
|
|
},
|
|
{
|
|
title: 'brackets',
|
|
content: `If you type square brackets around text a link is created automatically. Like magic!`,
|
|
created: 0,
|
|
modified: 0,
|
|
},
|
|
]
|