Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,35 +1,49 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
'Revenge
|
23 |
-
'
|
24 |
-
|
25 |
-
"Recover stolen goods or receive compensation through legal channels.",
|
26 |
-
"Seek comprehensive legal solutions and restore your well-being.",
|
27 |
-
"Obtain comprehensive legal and restorative support."
|
28 |
-
],
|
29 |
-
'Price (Example)': ["β¬10,000", "β¬25,000", "β¬50,000", "β¬125,000"]
|
30 |
}
|
31 |
|
32 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
-
#
|
35 |
-
st.
|
|
|
|
|
|
|
|
|
|
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 |
+
''')
|