-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.py
55 lines (45 loc) · 1.78 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
54
55
import streamlit as st
import pandas
import os
def main():
password = os.getenv("PASSWORD")
print(f"Password from environment variable: {password}")
st.set_page_config(layout="wide")
col1, col2 = st.columns(2)
with col1:
st.image("images/profilepic.png", width=400)
with col2:
st.title("Jerry Ronnau")
content = """
I'm Jerry Ronnau, a Cloud Engineer and skilled freelance developer specializing
in MERN stack websites and Python applications. With a passion for transforming
ideas into powerful digital solutions, I've crafted intricate ecommerce sites
featuring real-time stock updates and dynamic pricing. My expertise lies in
orchestrating reliable, scalable solutions using AWS and Kubernetes. I excel
in creating seamless user experiences by merging innovative design with robust
technical architecture. Let's collaborate to bring your digital vision to
life and empower your business.
"""
st.write(content)
signup = """
I am committed to turning visions into digital realities that empower businesses to
thrive without the burdens of technical intricacies. Below you can find some of
websites and applications I've developed. Sign up below to get started!
"""
st.write(signup)
col3, empty_col, col4 = st.columns([1.5, 0.5, 1.5])
df = pandas.read_csv('data.csv', sep=';')
with col3:
for index, row in df[:10].iterrows():
st.header(row["title"])
st.write(row["description"])
st.image(f'./images/{row["image"]}')
st.write(f"[Source Code]({row['url']})")
with col4:
for index, row in df[10:].iterrows():
st.header(row["title"])
st.write(row["description"])
st.image(f'./images/{row["image"]}')
st.write(f"[Source Code]({row['url']})")
if __name__ == "__main__":
main()