import streamlit as st # Header st.title("Taxi Rainbow") st.write("Don't Die, Avenge, We'll Help You") # Logo and slogan st.image("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", caption="Taxi Rainbow Logo") st.write("### Don't Die, Avenge, We'll Help You") # Our Services section st.write("## Our Services") st.write("Been wronged? Disrespected? Tell us your story and we'll handle those who messed with you.") # Services table services_data = { 'Revenge Type': ['Small Revenge', 'Medium Revenge', 'Full Revenge', 'Deluxe Revenge'], 'Description': ['Just make life difficult for your enemies', 'Mess with them and get your money back if they stole from you', 'Everything in previous packages, turn them in, make them regret', 'Everything included, make them suffer for what they did'], 'Poisoning': ['❌', '❌', '✔️', '✔️'], 'Beatdown': ['❌', '✔️', '✔️', '✔️'], 'Police': ['❌', '❌', '✔️', '✔️'], 'Torture': ['❌', '❌', '❌', '✔️'] } st.write("### Our Services") st.table(services_data) st.write("Our Prices: Small Revenge - €20,000, Medium Revenge - €45,000, Full Revenge - €100,000, Deluxe Revenge - €250,000") # Confidentiality section st.write("## Confidentiality") st.write("Your anonymity is our priority. No one will ever know you used our services.") # Contact Us section st.write("## Contact Us") st.write("Tell us your story at:") st.write("[+33 1 23 45 67 89](tel:+33123456789)")