File size: 1,775 Bytes
d0bf021
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import streamlit as st


# Set page configuration
def home_page():
    # Add title and header
    st.title("Career Enhancer")
    st.header("Boost Your Professional Journey")

    # Welcome/Introduction Section
    st.write("""

    Welcome to Career Enhancer, an application designed to help you enhance your development skills and career prospects. We offer three powerful features:



    - **GitHub Analytics**: Gain valuable insights into your GitHub profile and repositories.

    - **Custom Project Recommendation**: Get personalized project recommendations based on your interests and skills.

    """)

    # Feature Highlights
    st.subheader("Feature Highlights")

    # GitHub Analytics
    st.write("### GitHub Analytics")
    st.write("""

    Unlock the power of your GitHub profile with our GitHub Analytics feature.

    Gain valuable insights into your repositories, including:



    - Number of forks and stars

    - Programming language usage

    - Tips and tricks to enhance your GitHub profile

    - And more!



    With this information, you can identify areas for improvement

    and optimize your GitHub presence for better

    visibility and career opportunities.

    """)

    # Custom Project Recommendation
    st.write("### Custom Project Recommendation")
    st.write("""

    - Struggling to find the right project?

    - Provide your area of interest, experience level, and tech stack.

    - Get personalized project suggestions.

    - Analyze your GitHub for useful tips based on your goals.

    - Enhance skills, build a portfolio, and stay ahead with personalized recommendations.

    """)

    # Footer (Optional)
    st.write("---")
    st.write("© 2024 Career Enhancer. All rights reserved.")