saw / app.py
Kvikontent's picture
Update app.py
5276b7a verified
raw
history blame
1.63 kB
import streamlit as st
# Header
st.markdown('''
# Taxi Rainbow
Don't Die, Avenge, We'll Help You
''')
st.markdown('''
[https://cdn.discordapp.com/attachments/1159192117751578705/1219377335741190154/kvikontent_black_and_yellow_icon_logo_of_a_black_and_yellow_bea_b0b126d9-c0c1-4776-bc35-892aab5b41bc.png?ex=660b14a3&is=65f89fa3&hm=aa00973fb04afabe04ce3aaced2d55e4fff4601080192bb79bed07664b9464c7&](https://yourlink.com)
''')
# Main
st.markdown('''
## Our Services
Been wronged? Disrespected? Tell us your story and we'll handle those who messed with you.
''')
# Services table
services_data = {
'Small Revenge': ['Just make life difficult for your enemies', '❌', '❌', '❌', '❌'],
'Medium Revenge': ['Mess with them and get your money back if they stole from you', '❌', 'βœ”οΈ', '❌', '❌'],
'Full Revenge': ['Everything in previous packages, turn them in, make them regret', 'βœ”οΈ', 'βœ”οΈ', 'βœ”οΈ', '❌'],
'Deluxe Revenge': ['Everything included, make them suffer for what they did', 'βœ”οΈ', 'βœ”οΈ', 'βœ”οΈ', 'βœ”οΈ']
}
st.write('Our Services:')
st.table(pd.DataFrame(services_data, index=['Description', 'Poisoning', 'Beatdown', 'Police', 'Torture']))
st.markdown('''
Our Prices:
- Small Revenge - €20,000
- Medium Revenge - €45,000
- Full Revenge - €100,000
- Deluxe Revenge - €250,000
''')
# Confidentiality section
st.markdown('''
## Confidentiality
Your anonymity is our priority. No one will ever know you used our services.
''')
# Contact Us section
st.markdown('''
## Contact Us
Tell us your story at:
[Taxi Rainbow Contact](tel:+33123456789) or +33 1 23 45 67 89
''')