anujmaha commited on
Commit
c143a84
β€’
1 Parent(s): a72cf3f

Added Profile phot and sidebar

Browse files
Files changed (3) hide show
  1. .gitattributes +1 -0
  2. Untitled design.png +3 -0
  3. app.py +33 -2
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ Untitled[[:space:]]design.png filter=lfs diff=lfs merge=lfs -text
Untitled design.png ADDED

Git LFS Details

  • SHA256: 1ef5d1da894b9cc1f68a7097684d20eff1c08e5ed293bf830aa19d39509bc690
  • Pointer size: 132 Bytes
  • Size of remote file: 1.19 MB
app.py CHANGED
@@ -24,8 +24,39 @@ import base64
24
  # background_image = "bg2.jpeg"
25
  # add_bg_from_local(background_image)
26
 
 
 
27
 
28
- st.header("Get to know Anuj !!!")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
  if "user_prompt_history" not in st.session_state:
31
  st.session_state["user_prompt_history"] = []
@@ -38,7 +69,7 @@ if "chat_history" not in st.session_state:
38
 
39
 
40
 
41
- prompt = st.text_input("Prompt", placeholder="Enter your question with my name for the first prompt (eg. Who is Anuj Mahajan ?, What is his work experience ?)...")
42
 
43
 
44
  if prompt:
 
24
  # background_image = "bg2.jpeg"
25
  # add_bg_from_local(background_image)
26
 
27
+ # Load your profile image
28
+ profile_image = Image.open("Untitled design.png")
29
 
30
+ # Display profile image in the sidebar
31
+ st.sidebar.image(profile_image, use_column_width=True)
32
+
33
+ # Add LinkedIn, Github, and LeetCode links with icons
34
+ st.sidebar.markdown(
35
+ """
36
+ Actively looking for full time SDE / SWE / Full Stack / Data Science roles starting from May 2024
37
+
38
+
39
+ Email : anujmaha@iu.edu / anujsmahajan1998@gmail.com
40
+
41
+
42
+ Contact : +1 8126029653
43
+
44
+
45
+ I am a strong Full stack developer with diverse skill set under my belt.
46
+
47
+
48
+ [![](https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Bug.svg.original.svg)](https://www.linkedin.com/in/anujmaha/)
49
+ [![GitHub](https://img.icons8.com/material-outlined/48/000000/github.png)](https://github.com/anujmahajan98)
50
+ [Leetocde](https://leetcode.com/anujmah/)
51
+ """
52
+ )
53
+
54
+ # column1, column2 = st.columns(2)
55
+ # column1.markdown("[![](https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Bug.svg.original.svg)](https://www.linkedin.com/in/anujmaha/)")
56
+ # column2.markdown("[![](https://img.icons8.com/material-outlined/48/000000/github.png)](https://github.com/anujmahajan98)")
57
+
58
+ st.header("Get to know Anuj πŸ‘¨πŸ»β€πŸ’»")
59
+ st.header("Ask anything related to me ")
60
 
61
  if "user_prompt_history" not in st.session_state:
62
  st.session_state["user_prompt_history"] = []
 
69
 
70
 
71
 
72
+ prompt = st.text_input("Prompt", placeholder="eg. Is it a good choice to hire him as SDE ?, What is his Tech Stack ?)...")
73
 
74
 
75
  if prompt: