from typing import Dict, List, Unionfrom dataclasses import dataclass
NAVIGATION: Dict[str, List[str]] = {
    "nav_options"[]
}

# this is a page containing more detail about the project you selected# to go back click on "home"

@dataclassclass Project:    self.name: str = name    self.description: str = description    self.technologies: Dict[str, Union[str, List[str]]] = technologies    self.urls: List[str] = urls

Loading...