import streamlit as st
from .navigation import go_to_home
def welcome():
st.markdown('''
TrendFlow
TrendFlow is an advanced framework that uses deep learning techniques to analyze research trends. This powerful framework offers a wide range of analytical capabilities, including literature clustering, trend generation, and trend summarization. With TrendFlow, you can gain insights into emerging research topics and stay up-to-date on the latest advancements in your field.
''', unsafe_allow_html=True)
st.markdown(
"""
""",
unsafe_allow_html=True,
)
# 添加一个居中的按钮
st.button("Get Started", on_click=go_to_home)