import altair as alt import numpy as np import pandas as pd import streamlit as st # Page configuration st.set_page_config(page_title="DSRS Knowledge Base", layout="wide") # Sidebar - Table of Contents st.sidebar.title("📚 Table of Contents") toc_items = [ "1. Services & Capabilities", "2. Key Projects", "3. Technical Tools / Platforms", "4. Team Members & Roles", "5. Events & News Highlights" ] for item in toc_items: st.sidebar.markdown(f"- [{item}](#{item.lower().replace(' ', '-')})") # Main content area st.markdown("