## Notes
- ![[2025#Mission]]
- Kind of tied in with growth and joy as well
- Growth is about that prioritization of time and effort so I chave more opportunity to reconnect with this drive
- Joy is about making it an important part of the journey
## Productivity
### Goals
```dataview
table list("🎯 " + Description, "💡 " + Why) as "Details"
FROM #goal AND !"Hidden" AND !outgoing([[]])
WHERE contains(Area, this.file.link)
SORT file.ctime asc
```
### Projects
```dataview
table Deadline
FROM #project AND !"Hidden" AND !outgoing([[]])
WHERE contains(Area, this.file.link)
SORT file.ctime asc
```
### Habits
```dataview
table Status, Frequency, HabitGroup, Goal
FROM #habitNote AND [[]] AND !"Hidden"
WHERE icontains(file.frontmatter.Area, this.file.name)
SORT Created asc
```
## Knowledge
### Inputs
```dataview
table Status, Author
FROM #input AND [[]] AND !"Hidden" AND !outgoing([[]])
SORT file.mtime desc
```
### Other Notes
```dataview
table Created
FROM [[]] AND !#project AND !#input AND !"Hidden" AND !outgoing([[]])
SORT file.mtime desc
```