diff --git a/README.md b/README.md
index 1dfb45c..7c35101 100644
--- a/README.md
+++ b/README.md
@@ -1,31 +1,23 @@
-
-
1. About the project
-
This repository consists of a code of a Sales Dashboard which is made using python.
- This code is free to use by anyone and licensed under the MIT open-source license.
- In this dashboard, there are separate dropdowns for analyzing different dimensions of sales.
- The core python libraries used in this dashboard are dash, plotly, dash_core_components, dash_html_components, dash_bootstrap_components, etc.
- The app is deployable on the server and deployed on Heroku.
-
-
+## How to use it?
+Current version of Python( >= 3.9) may not run this application properly due to different versions of dependencies.
+- Install earlier version of [Python(~ 3.6)](https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe)
+- Make a [Virtual Environment](https://gist.github.com/yesdeepakmittal/61494217c8be4a7e61524e27824943bd) and activate it.
+- Clone this repository `git clone https://github.com/yesdeepakmittal/Business_Dashboard.git`
+- `cd Business_Dashboard`
+- `pip install -r requirements.txt`
+- run application using `python index.py`
+- Check your application in the browser at `http://127.0.0.1:8050/`
-
-
4. Reference
-
dash-bootstrap-components
-
-
Happy Coding :)π€π€π€
-
+
+## Data Source
+[Kaggle](https://www.kaggle.com/juhi1994/superstore)
diff --git a/assets/deepakphoto.JPG b/assets/deepakphoto.JPG
deleted file mode 100644
index ed8bc36..0000000
Binary files a/assets/deepakphoto.JPG and /dev/null differ
diff --git a/assets/map.jpg b/assets/map.jpg
new file mode 100644
index 0000000..0696468
Binary files /dev/null and b/assets/map.jpg differ
diff --git a/assets/regionwisesubcategory.jpg b/assets/regionwisesubcategory.jpg
new file mode 100644
index 0000000..46338f5
Binary files /dev/null and b/assets/regionwisesubcategory.jpg differ
diff --git a/assets/sales.jpg b/assets/sales.jpg
new file mode 100644
index 0000000..7094163
Binary files /dev/null and b/assets/sales.jpg differ
diff --git a/assets/salescitywise.jpg b/assets/salescitywise.jpg
new file mode 100644
index 0000000..6744d4d
Binary files /dev/null and b/assets/salescitywise.jpg differ
diff --git a/home/home.py b/home/home.py
index 91d2004..8ddb02f 100644
--- a/home/home.py
+++ b/home/home.py
@@ -7,10 +7,10 @@
row = dbc.Row([
dbc.Col(dbc.Jumbotron([
html.H5(children="About Author"),
- html.P("Data Enthusiast & Business Geek"),
+ html.P("Data Scientist"),
html.Hr(),
- html.P("Follow me on Github"),
- html.A(dbc.Button("Read here", color="primary"),href='https://github.com/yesdeepakmittal')],
+ html.P("Treat Data & People equally"),
+ html.A(dbc.Button("Follow Author on Github", color="primary"),href='https://github.com/yesdeepakmittal')],
), lg=4, md=4, xs=12),
dbc.Col(dbc.Jumbotron([
html.H5(children="For Demo Only"),
@@ -21,17 +21,17 @@
html.A(dbc.Button("Read here", color="primary"),href='https://github.com/yesdeepakmittal')],
), lg=4, md=4, xs=12),
dbc.Col(dbc.Jumbotron([
- html.H5(children="Python Introduction"),
- html.P("One of the easiest and most widely used programming language in the world."),
+ html.H5(children="Improve Application"),
+ html.P("Feel free to open an issue in Github Repository for any Suggestion/Improvement"),
html.Hr(),
- html.P("Read the full blog at SolvProb"),
- html.A(dbc.Button("Read here", color="primary"),href='https://github.com/yesdeepakmittal')],
+ html.P("Click below button to open an issue"),
+ html.A(dbc.Button("Open issue", color="primary"),href='https://github.com/yesdeepakmittal/Business_Dashboard/issues/new')],
), lg=4, md=4, xs=12)],justify='around')
layout = html.Div(children=[html.H1(children='Sample Superstore Data Analysis'),
- html.P(children='This data analysis is made on Sample Superstore data of Tableau. '),
- html.Div(['Click for complete Up-to-date dataπ',html.Button('Update-data', id='button')]),
+ html.P(children='Python Web Application made using low-code framework, Dash'),
+ html.Div(['Update Dataπ',html.Button('Update-data', id='button')]),
html.Br(),
row,
html.Div(id='Output',children='')],