23 lines
556 B
Python
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",
|
|
),
|
|
],
|
|
)
|