diff --git a/README.md b/README.md index 7e5aa49..c24bb4c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # python-dash-example Python Dash With Bootstrap +![Landing Page](screenshots/1.png?raw=true "Landing Page") + ## Clone git clone https://github.com/vkmrishad/python-dash-example.git @@ -40,3 +42,7 @@ Install Packages from Poetry ## Sample Excel xls file available in the directory $ cd src/db/data/(GB) Sample - EU Superstore.xls + +## Screenshots +![Data Table](screenshots/2.png?raw=true "Data Table") +![Graph](screenshots/3.png?raw=true "Graph") diff --git a/app.py b/app.py index 7250388..f3aed2b 100644 --- a/app.py +++ b/app.py @@ -38,7 +38,7 @@ def display_page(pathname): dbc.Navbar( dbc.Container( [ - dbc.NavbarBrand("Superstore Dashboard", href="/"), + dbc.NavbarBrand(html.B("Superstore Dashboard"), href="/"), dbc.NavbarToggler(id="navbar-toggler"), dbc.Collapse( dbc.Nav( diff --git a/screenshots/1.png b/screenshots/1.png new file mode 100644 index 0000000..c8b6880 Binary files /dev/null and b/screenshots/1.png differ diff --git a/screenshots/2.png b/screenshots/2.png new file mode 100644 index 0000000..777bd19 Binary files /dev/null and b/screenshots/2.png differ diff --git a/screenshots/3.png b/screenshots/3.png new file mode 100644 index 0000000..723530a Binary files /dev/null and b/screenshots/3.png differ