import dash_bootstrap_components as dbc
import dash_html_components as html


title_bar = dbc.Col(
    children=[
        html.H2(
            [
                html.Img(src="assets/X-logo2.png", height="50px"),
                "Atlas-X: A dashboard for Chandra detected extagalactic X-ray jets",
            ],
            className='bg-black h1'
        )
    ],
    className="text-center text-white",
)