from typing import Dict, List, Union
from dataclasses import dataclass
NAVIGATION: Dict[str, List[str]] = {
"nav_options"
:
[
"
home
",
"
description
"
,
"
technologies
"
]
}
# this is a page containing more detail about the project you selected
# to go back click on "home"
@dataclass
class Project:
self.name: str = name
self.description: str = description
self.technologies: Dict[str, Union[str, List[str]]] = technologies
self.urls: List[str] = urls
Loading...