Skip to content

Commit

Permalink
add github icon
Browse files Browse the repository at this point in the history
  • Loading branch information
yilinxia committed Feb 11, 2025
1 parent 07d28a5 commit e1e1b1d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
app = dash.Dash(
__name__,
server=server,
external_stylesheets=[dbc.themes.BOOTSTRAP]
external_stylesheets=[dbc.themes.BOOTSTRAP, dbc.icons.FONT_AWESOME]
)

# Assign the layout from layout.py
Expand Down
Binary file added assets/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified requirements.txt
Binary file not shown.
16 changes: 16 additions & 0 deletions src/layouts/main_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import dash_bootstrap_components as dbc
from dash import html
from dash_iconify import DashIconify

from layouts.accordian_layout import left_column
from layouts.visualization_layout import right_column

Expand Down Expand Up @@ -76,6 +78,20 @@
"Released under MIT License. Copyright © 2025 - Present UIUC CIRSS",
className="text-center text-muted small",
),
html.Div(
[
html.A(
DashIconify(
icon="ion:logo-github",
width=30,
),
href="https://github.com/idaks/wese-app",
target="_blank",
className="text-decoration-none",
),
],
className="d-flex justify-content-center",
),
],
className="py-3",
),
Expand Down

0 comments on commit e1e1b1d

Please sign in to comment.