Spaces:
Sleeping
Sleeping
import streamlit as st | |
logo_url = "https://www.example.com/your_logo.png" # Placeholder | |
st.markdown(""" | |
<header> | |
<div class="container"> | |
<div class="logo"> | |
<img src="""" + logo_url + """" alt="Your Company Logo"> | |
<h1>Your Company Name</h1> | |
</div> | |
<p class="slogan">Empowering Success, Together</p> </div> | |
</header> | |
""") | |
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.") | |