A Streamlit app to store all your personal links, similar to Linktr.ee.

Follow these steps to set up your own Streamlit links page:
Step 1: Generate a copy of this repository and name it anything except your-username.github.io
.
Step 2: Customize your links page by editing the streamlit_app.py
file:
Step 3: Deploy to Streamlit Cloud
- Go to Streamlit Cloud and log in to your account.
- Click on the New app button.
- Select the repository you created in the previous steps.
- Click on the Deploy! button.
After a few moments, your new links page should be accessible.
import streamlit as st
from st_functions import st_button, load_css
from PIL import Image
load_css()
st.write("[](https://github.com/Namratha2301/links)")
col1, col2, col3 = st.columns(3)
col2.image(Image.open('dp.png'))
st.header('Gowri Namratha Meedinti, CS Grad')
st.info('Cornell CS Grad; Versatile problem solver with a passion for creativity and innovation in data and technology.')
icon_size = 24
# GitHub Button
st_button('github', 'https://github.com/Namratha2301', 'My GitHub', icon_size)
# LinkedIn Button
st_button('linkedin', 'https://www.linkedin.com/in/namrathameedinti', 'Connect on LinkedIn', icon_size)
# Email Button
st_button('email', 'mailto:gm568@cornell.edu', 'Email Me', icon_size)