File size: 1,340 Bytes
38468af
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st
from st_functions import st_button, load_css
from PIL import Image
import sys

sys.path.append('./') ##appending my root path so that I can import a function from another py file

st.title("Learn More About Me:") ## my title 

load_css()   ##loading css customizations from st_function file 

col1, col2, col3 = st.columns(3)
col2.image(Image.open('pages/dp.PNG'))   ##loading my image

st.header('Gregory Arthur: The Data Guy')

st.info('Volunteer| Data Analyst| Aspiring Data Engineer with an interest in Data Science and Finances')

icon_size = 20

st.subheader("I Can Help Your Business To: ")

st.write("""
- Perform descriptive analysis to extract valuable insights from your business' dataset.
- Develop regression, time series, and classification models for accurate predictions and forecasting.
- Build visually appealing dashboards displaying KPIs and business metrics for easy assimilation.

""")

st.subheader("Connect With Me: ")

st_button('medium', 'https://medium.com/@gregoryarthur98', 'Read my Blogs', icon_size)
st_button('github', 'https://github.com/Greg-Art', 'Checkout My Respoitories', icon_size)
st_button('linkedin', 'https://www.linkedin.com/in/gregory-kwaku-arthur-b68a28252/', 'Follow me on LinkedIn', icon_size)
st_button('mail', '[email protected]', 'Send me a mail', icon_size)