File size: 482 Bytes
fbb7c49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import json
import streamlit as st

def authors():
    # {"Github β†’ " "["username"]" "("url")" for username,url in author_details["socials"].items() }
    # with open("frontend/contend/authors.json","r") as f:
    #     author_details = json.load(f)
    st.sidebar.divider()
    st.sidebar.info(
    """
    Follow us on:
    
    Github β†’ [@mayureshagashe2105](https://github.com/MayureshAgashe2105)\n
    Github β†’ [@HemanthSai7](https://github.com/HemanthSai7)
    """
    )