great-ai/great_ai/deploy/routes/dashboard/get_footer.py
2022-07-04 19:31:15 +02:00

23 lines
556 B
Python

from dash import html
from ....constants import GITHUB_LINK
def get_footer() -> html.Footer:
return html.Footer(
[
html.Div(
[
html.H6("GreatAI"),
html.P(
"A human-friendly framework for robust end-to-end AI deployments."
),
]
),
html.A(
html.Img(src="/assets/github.png"),
href=GITHUB_LINK,
target="_blank",
),
],
)