Spaces:
Sleeping
Sleeping
File size: 2,057 Bytes
aabd420 3dbaa88 cb70eab 28c4a83 cb70eab 5276b7a 845474d 5276b7a 845474d aabd420 845474d 5276b7a 845474d 5276b7a 845474d aabd420 5276b7a 845474d 60670d9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
import streamlit as st
g, gg = st.columns(2)
with g:
# Header
st.title("SAW by KV")
st.write("At SAW, we are more than just a service - we are your knights in shining armor, dedicated to righting the wrongs you've faced. Our mantra is simple: **Don't Die, Avenge**. We stand by your side to help you reclaim what's rightfully yours and bring justice to those who have dared to cross you.")
with gg:
# 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.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("[+7 921 742 74 49](tel:+79217427449)")
|