from typing import Dict, List
from dataclasses import dataclass
NAVIGATION: Dict[str, List[str]] = {
"nav_options"
:
[
"
home
",
"
tools
"
,
"
db
"
,
"
Python
"
,
"
Java
"
,
"
TypeScript
"
,
"
C
"
,
"
other
"
,
"
learning
"
]
}
hi