from typing import Dict, List, Optional
from dataclasses import dataclass
from datetime import date
NAVIGATION: Dict[str, List[str]] = {
"nav_options"
:
[
"
home
",
"
what
"
,
"
when
"
,
"
where
"
,
"
how
"
]
}
# this is a more detailed explanation of the background item you clicked on
# to go back to the main page click on "home"
Loading...