Posts

Showing posts from August, 2025
import streamlit as st import pandas as pd import numpy as np import matplotlib.pyplot as plt import plotly.express as px import plotly.graph_objects as go from datetime import datetime, timedelta import random import time from PIL import Image # Set up the page st.set_page_config(page_title="AI Marketing & Growth Dashboard", layout="wide") # Custom CSS for styling st.markdown(""" """, unsafe_allow_html=True) # Sidebar navigation st.sidebar.title("AI Marketing & Growth Dashboard") st.sidebar.image("https://cdn-icons-png.flaticon.com/512/3135/3135706.png", width=100) page = st.sidebar.selectbox("Navigate to", [ "Dashboard Overview", "AI Cold Email Icebreaker Generator", "AI Product Launch Checklist Creator", "AI Competitor Ad Spy Tool", "AI Influencer ROI Calculator", "AI Podcast Episode Idea Generator", ...