Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,49 +1,40 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
# Header
|
4 |
-
st.
|
5 |
-
|
6 |
-
Don't Die, Avenge, We'll Help You
|
7 |
-
''')
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
''
|
12 |
|
13 |
-
#
|
14 |
-
st.
|
15 |
-
|
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 |
-
'
|
22 |
-
'
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
|
27 |
-
st.write(
|
28 |
-
st.table(
|
29 |
|
30 |
-
st.
|
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.
|
40 |
-
|
41 |
-
Your anonymity is our priority. No one will ever know you used our services.
|
42 |
-
''')
|
43 |
|
44 |
# Contact Us section
|
45 |
-
st.
|
46 |
-
|
47 |
-
|
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)")
|
|
|
|