Spaces:
Sleeping
Sleeping
| 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 | |
| ''') |