-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_layout.py
26 lines (23 loc) · 899 Bytes
/
app_layout.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""This module contains the app's text and layout elements. """
import streamlit as st
def setup_page() -> None:
"""Set the application's general appearance."""
st.set_page_config(page_title="Trending on Twitter Network App", page_icon="🐦")
st.title("Twitter's Trending Topics for Germany")
st.markdown(
"""This application lets you visualize networks of connected entities in
Twitter's trending topics for Germany. The top ten trending topics right
now are provided, but you can also add queries of your own. The source code
is available on
[GitHub](https://github.com/nikkibeach/trending-twitter-networkx-app).
"""
)
st.markdown(
"""
<style>
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
</style>
""",
unsafe_allow_html=True,
)