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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +44 -30
app.py CHANGED
@@ -1,35 +1,49 @@
1
  import streamlit as st
2
 
3
- logo_url = "https://www.example.com/your_logo.png" # Placeholder
4
-
5
- st.markdown("""
6
- <header>
7
- <div class="container">
8
- <div class="logo">
9
- <img src="""" + logo_url + """" alt="Your Company Logo">
10
- <h1>Your Company Name</h1>
11
- </div>
12
- <p class="slogan">Empowering Success, Together</p> </div>
13
- </header>
14
- """)
15
-
16
- st.header("Our Services")
17
-
18
- description = "We help you achieve justice and satisfaction through legal and ethical means."
19
- st.write(description)
20
-
21
- data = {
22
- 'Revenge Type': ["Small Help", "Medium Assistance", "Full Resolution", "Deluxe Support"],
23
- 'Description': [
24
- "Get the help you deserve to address minor grievances.",
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.table(data)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
 
34
- # Disclaimer (optional)
35
- st.info("Disclaimer: Our services are limited to legal and ethical actions. We do not condone violence or illegal activities.")
 
 
 
 
 
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
+ ''')