From 434b1f98dc877fec6f7cbbc36a9a02123321c692 Mon Sep 17 00:00:00 2001 From: Claromes Date: Thu, 11 May 2023 01:33:47 -0300 Subject: [PATCH] add version and theme --- .streamlit/config.toml | 3 +++ app.py | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 .streamlit/config.toml diff --git a/.streamlit/config.toml b/.streamlit/config.toml new file mode 100644 index 0000000..606fe4c --- /dev/null +++ b/.streamlit/config.toml @@ -0,0 +1,3 @@ +[theme] +base="light" +primaryColor="#ab2e33" \ No newline at end of file diff --git a/app.py b/app.py index 9822e8f..b5b6b7f 100644 --- a/app.py +++ b/app.py @@ -3,6 +3,8 @@ import datetime import streamlit as st import streamlit.components.v1 as components +__version__ = '0.0.1' + st.set_page_config( page_title='Wayback Tweets', page_icon='🏛️', -- 2.34.1