-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.py
53 lines (41 loc) · 1.47 KB
/
Home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ========================================
# Import libraries
# ========================================
import folium
import inflection
import streamlit as st
from PIL import Image
# ----------------- Start of the logical code structure -----------------
st.set_page_config(page_title='Home',
page_icon='🍛',
layout='wide'
)
# #########################
# Sidebar
# #########################
image = Image.open('logo.png')
st.sidebar.image(image, width=300)
st.sidebar.markdown('# Dishy ')
st.sidebar.markdown('## Delights at your fingertips')
st.sidebar.markdown('''___''')
st.sidebar.markdown('##### Powered by Comunidade DS')
st.sidebar.markdown('##### Data Analyst: Daniel Gomes')
st.write("# Dishy Dashboard")
st.markdown(
'''
### This dashboard is designed to track restaurant growth metrics on its platform.
### How to use this Dashboard?
- Overview:
- General behavioral metrics.
- Geolocation distribution.
- Countries:
- Information regarding country-level indicators.
- Cities:
- Information regarding city-level indicators.
- Restaurants:
- Information regarding restaurans-level indicators.
### Ask for help
- Data Science Team on Discord
- @daniel_asg
- For more information, please visit the [project page on GitHub](https://github.com/Daniel-ASG/dishy_company/tree/main). Thanks for your visit.
''')