saw / app.py
Kvikontent's picture
Create app.py
aabd420 verified
raw
history blame
829 Bytes
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.")