Spaces:
Sleeping
Sleeping
Upload home_page.py
Browse files- home_page.py +50 -0
home_page.py
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
# Set page configuration
|
| 5 |
+
def home_page():
|
| 6 |
+
# Add title and header
|
| 7 |
+
st.title("Career Enhancer")
|
| 8 |
+
st.header("Boost Your Professional Journey")
|
| 9 |
+
|
| 10 |
+
# Welcome/Introduction Section
|
| 11 |
+
st.write("""
|
| 12 |
+
Welcome to Career Enhancer, an application designed to help you enhance your development skills and career prospects. We offer three powerful features:
|
| 13 |
+
|
| 14 |
+
- **GitHub Analytics**: Gain valuable insights into your GitHub profile and repositories.
|
| 15 |
+
- **Custom Project Recommendation**: Get personalized project recommendations based on your interests and skills.
|
| 16 |
+
""")
|
| 17 |
+
|
| 18 |
+
# Feature Highlights
|
| 19 |
+
st.subheader("Feature Highlights")
|
| 20 |
+
|
| 21 |
+
# GitHub Analytics
|
| 22 |
+
st.write("### GitHub Analytics")
|
| 23 |
+
st.write("""
|
| 24 |
+
Unlock the power of your GitHub profile with our GitHub Analytics feature.
|
| 25 |
+
Gain valuable insights into your repositories, including:
|
| 26 |
+
|
| 27 |
+
- Number of forks and stars
|
| 28 |
+
- Programming language usage
|
| 29 |
+
- Tips and tricks to enhance your GitHub profile
|
| 30 |
+
- And more!
|
| 31 |
+
|
| 32 |
+
With this information, you can identify areas for improvement
|
| 33 |
+
and optimize your GitHub presence for better
|
| 34 |
+
visibility and career opportunities.
|
| 35 |
+
""")
|
| 36 |
+
|
| 37 |
+
# Custom Project Recommendation
|
| 38 |
+
st.write("### Custom Project Recommendation")
|
| 39 |
+
st.write("""
|
| 40 |
+
- Struggling to find the right project?
|
| 41 |
+
- Provide your area of interest, experience level, and tech stack.
|
| 42 |
+
- Get personalized project suggestions.
|
| 43 |
+
- Analyze your GitHub for useful tips based on your goals.
|
| 44 |
+
- Enhance skills, build a portfolio, and stay ahead with personalized recommendations.
|
| 45 |
+
""")
|
| 46 |
+
|
| 47 |
+
# Footer (Optional)
|
| 48 |
+
st.write("---")
|
| 49 |
+
st.write("© 2024 Career Enhancer. All rights reserved.")
|
| 50 |
+
|