Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.header("Our Services")
|
4 |
+
|
5 |
+
description = "We help you achieve justice and satisfaction through legal and ethical means."
|
6 |
+
st.write(description)
|
7 |
+
|
8 |
+
data = {
|
9 |
+
'Revenge Type': ["Small Help", "Medium Assistance", "Full Resolution", "Deluxe Support"],
|
10 |
+
'Description': [
|
11 |
+
"Get the help you deserve to address minor grievances.",
|
12 |
+
"Recover stolen goods or receive compensation through legal channels.",
|
13 |
+
"Seek comprehensive legal solutions and restore your well-being.",
|
14 |
+
"Obtain comprehensive legal and restorative support."
|
15 |
+
],
|
16 |
+
'Price (Example)': ["€10,000", "€25,000", "€50,000", "€125,000"]
|
17 |
+
}
|
18 |
+
|
19 |
+
st.table(data)
|
20 |
+
|
21 |
+
# Disclaimer (optional)
|
22 |
+
st.info("Disclaimer: Our services are limited to legal and ethical actions. We do not condone violence or illegal activities.")
|