https://github.com/namratha2301/linktree-clone
A Streamlit app to store all your personal links, similar to Linktr.ee.
https://github.com/namratha2301/linktree-clone
css python streamlit
Last synced: about 2 months ago
JSON representation
A Streamlit app to store all your personal links, similar to Linktr.ee.
- Host: GitHub
- URL: https://github.com/namratha2301/linktree-clone
- Owner: Namratha2301
- Created: 2024-10-28T19:39:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-29T15:05:48.000Z (over 1 year ago)
- Last Synced: 2025-01-28T19:15:48.870Z (over 1 year ago)
- Topics: css, python, streamlit
- Language: Python
- Homepage: https://linktree-clone-namratha.streamlit.app/
- Size: 374 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Linktree clone
> A Streamlit app to store all your personal links, similar to [Linktr.ee](https://linktr.ee/).
# Demo App
[](https://linktree-clone-namratha.streamlit.app/)

[](https://linktree-clone-inonzmwvngkdpcfctwbggr.streamlit.app/#gowri-namratha-meedinti-cs-grad)
# Getting Started
Follow these steps to set up your own Streamlit links page:
**Step 1**: [Generate a copy of this repository](https://github.com/Namratha2301/links/generate) 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
1. Go to [Streamlit Cloud](https://streamlit.io/cloud) and log in to your account.
2. Click on the **New app** button.
3. Select the repository you created in the previous steps.
4. Click on the **Deploy!** button.
After a few moments, your new **links page** should be accessible.
```python
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)