Kvikontent commited on
Commit
845474d
Β·
verified Β·
1 Parent(s): 5276b7a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -34
app.py CHANGED
@@ -1,49 +1,40 @@
1
  import streamlit as st
2
 
3
  # Header
4
- st.markdown('''
5
- # Taxi Rainbow
6
- Don't Die, Avenge, We'll Help You
7
- ''')
8
 
9
- st.markdown('''
10
- [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)
11
- ''')
12
 
13
- # Main
14
- st.markdown('''
15
- ## Our Services
16
- Been wronged? Disrespected? Tell us your story and we'll handle those who messed with you.
17
- ''')
18
 
19
  # Services table
20
  services_data = {
21
- 'Small Revenge': ['Just make life difficult for your enemies', '❌', '❌', '❌', '❌'],
22
- 'Medium Revenge': ['Mess with them and get your money back if they stole from you', '❌', 'βœ”οΈ', '❌', '❌'],
23
- 'Full Revenge': ['Everything in previous packages, turn them in, make them regret', 'βœ”οΈ', 'βœ”οΈ', 'βœ”οΈ', '❌'],
24
- 'Deluxe Revenge': ['Everything included, make them suffer for what they did', 'βœ”οΈ', 'βœ”οΈ', 'βœ”οΈ', 'βœ”οΈ']
 
 
 
 
 
25
  }
26
 
27
- st.write('Our Services:')
28
- st.table(pd.DataFrame(services_data, index=['Description', 'Poisoning', 'Beatdown', 'Police', 'Torture']))
29
 
30
- st.markdown('''
31
- Our Prices:
32
- - Small Revenge - €20,000
33
- - Medium Revenge - €45,000
34
- - Full Revenge - €100,000
35
- - Deluxe Revenge - €250,000
36
- ''')
37
 
38
  # Confidentiality section
39
- st.markdown('''
40
- ## Confidentiality
41
- Your anonymity is our priority. No one will ever know you used our services.
42
- ''')
43
 
44
  # Contact Us section
45
- st.markdown('''
46
- ## Contact Us
47
- Tell us your story at:
48
- [Taxi Rainbow Contact](tel:+33123456789) or +33 1 23 45 67 89
49
- ''')
 
1
  import streamlit as st
2
 
3
  # Header
4
+ st.title("Taxi Rainbow")
5
+ st.write("Don't Die, Avenge, We'll Help You")
 
 
6
 
7
+ # Logo and slogan
8
+ 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")
9
+ st.write("### Don't Die, Avenge, We'll Help You")
10
 
11
+ # Our Services section
12
+ st.write("## Our Services")
13
+ st.write("Been wronged? Disrespected? Tell us your story and we'll handle those who messed with you.")
 
 
14
 
15
  # Services table
16
  services_data = {
17
+ 'Revenge Type': ['Small Revenge', 'Medium Revenge', 'Full Revenge', 'Deluxe Revenge'],
18
+ 'Description': ['Just make life difficult for your enemies',
19
+ 'Mess with them and get your money back if they stole from you',
20
+ 'Everything in previous packages, turn them in, make them regret',
21
+ 'Everything included, make them suffer for what they did'],
22
+ 'Poisoning': ['❌', '❌', 'βœ”οΈ', 'βœ”οΈ'],
23
+ 'Beatdown': ['❌', 'βœ”οΈ', 'βœ”οΈ', 'βœ”οΈ'],
24
+ 'Police': ['❌', '❌', 'βœ”οΈ', 'βœ”οΈ'],
25
+ 'Torture': ['❌', '❌', '❌', 'βœ”οΈ']
26
  }
27
 
28
+ st.write("### Our Services")
29
+ st.table(services_data)
30
 
31
+ st.write("Our Prices: Small Revenge - €20,000, Medium Revenge - €45,000, Full Revenge - €100,000, Deluxe Revenge - €250,000")
 
 
 
 
 
 
32
 
33
  # Confidentiality section
34
+ st.write("## Confidentiality")
35
+ st.write("Your anonymity is our priority. No one will ever know you used our services.")
 
 
36
 
37
  # Contact Us section
38
+ st.write("## Contact Us")
39
+ st.write("Tell us your story at:")
40
+ st.write("[+33 1 23 45 67 89](tel:+33123456789)")