WhatsappAnalysis / pages /4_✉️_Contact.py
selbl's picture
Update pages/4_✉️_Contact.py
aa3bbfe verified
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Mar 3 10:01:51 2024
@author: selbl
"""
import streamlit as st
def main():
st.set_page_config(
page_title="Whatsapp Conversation Analysis",
page_icon=":bar_chart:", # You can use an emoji or a URL to an image
#layout="wide",
initial_sidebar_state="auto",
)
#st.title("Contact")
st.header("Contact", divider="blue")
st.text("You can refer to the Github repository for any feedback/comments")
st.write("[Repository](https://github.com/Selbl/WhatsappAnalysis)")
if __name__ == "__main__":
main()