aminahmed78's picture
Create app.py
e88bb21 verified
import streamlit as st
import time
# Page configuration
st.set_page_config(page_title="Sonami Software", layout="wide")
# HTML and CSS
html_code = """
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #007bff;
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav a {
color: white;
text-decoration: none;
}
section {
padding: 20px;
margin: 10px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 20px;
background-color: #007bff;
color: white;
}
</style>
<header>
<div class="logo">
<h1>Sonami Software</h1>
</div>
<nav>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#clients">Clients</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About Us</h2>
<p>Sonami Software is a leading software development firm specializing in creating tailored IT solutions for businesses across diverse industries. Founded by Amin Ahmed, Sonami Software was built on the principles of innovation, reliability, and customer-centricity. With a passion for technology and a vision to transform businesses through smart software solutions, Amin Ahmed has led the company to become a trusted name in the IT industry.</p>
<p>Our journey began with a simple yet ambitious goal: to provide businesses with the tools they need to thrive in an increasingly digital world. Over the years, Sonami Software has grown from a small startup into a full-fledged software company, serving over 300 satisfied clients in various sectors. From wholesale medicine distributors to retail store owners, motorcycle spare parts dealers, cosmetics merchants, and garment wholesalers, we have helped businesses streamline their operations and achieve their objectives through our custom-built solutions.</p>
<p>At Sonami Software, we believe in delivering more than just software; we believe in delivering results. Our expertise spans a range of core solutions, including Point-of-Sale (POS) Systems, Inventory Management Systems (IMS), Accounting Systems, and Distribution Network Solutions. By understanding our clients’ unique challenges, we design and implement solutions that address their specific needs, helping them achieve efficiency and profitability.</p>
</section>
<section id="services">
<h2>Our Services</h2>
<ul>
<li>Point-of-Sale (POS) Systems</li>
<li>Inventory Management Systems (IMS)</li>
<li>Accounting Systems</li>
<li>Distribution Network Solutions</li>
</ul>
</section>
<section id="clients">
<h2>Our Clients</h2>
<p>We have over <span id="client-count">0</span> satisfied clients!</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Mobile & WhatsApp: <a href="tel:+923218779133">+92321-8779133</a></p>
</section>
<footer>
<p>&copy; 2024 Sonami Software. All rights reserved.</p>
</footer>
"""
# Rendering HTML
st.markdown(html_code, unsafe_allow_html=True)
# Dynamic client counter
client_count = st.empty()
count = 0
while True:
time.sleep(60) # Increment every minute
count += 1
client_count.markdown(f"**We have over {count} satisfied clients!**")