File size: 829 Bytes
aabd420
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import streamlit as st

st.header("Our Services")

description = "We help you achieve justice and satisfaction through legal and ethical means."
st.write(description)

data = {
    'Revenge Type': ["Small Help", "Medium Assistance", "Full Resolution", "Deluxe Support"],
    'Description': [
        "Get the help you deserve to address minor grievances.",
        "Recover stolen goods or receive compensation through legal channels.",
        "Seek comprehensive legal solutions and restore your well-being.",
        "Obtain comprehensive legal and restorative support."
    ],
    'Price (Example)': ["€10,000", "€25,000", "€50,000", "€125,000"]
}

st.table(data)

# Disclaimer (optional)
st.info("Disclaimer: Our services are limited to legal and ethical actions. We do not condone violence or illegal activities.")