File size: 627 Bytes
94be39d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
aa3bbfe
 
94be39d
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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()