import solara
@solara.component
def Page():
with solara.AppBar():
with solara.AppBarTitle():
with solara.Row(style={"background-color": "transparent", "align-items": "center"}):
solara.HTML(tag="img", attributes={"src": "https://picsum.photos/400/200", "style": "height: 40px"})
solara.Text("Title of Dashboard")
solara.v.Spacer()
solara.Button(label="Exit", on_click = lambda: None)
solara.Markdown("HELLLOOO")