import streamlit as st import time # Page configuration st.set_page_config(page_title="Sonami Software", layout="wide") # HTML and CSS html_code = """

About Us

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.

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.

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.

Our Services

Our Clients

We have over 0 satisfied clients!

Contact Us

Email: fsonse@yahoo.com

Mobile & WhatsApp: +92321-8779133

""" # 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!**")