Skip to content

Commit d5e9d2f

Browse files
authored
Merge branch 'recodehive:gh-pages' into gh-pages
2 parents cd7bd5c + 694807b commit d5e9d2f

23 files changed

+2949
-1663
lines changed

CONTRIBUTING.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Contributing to Awesome GitHub Profiles
2+
3+
Thank you for your interest in contributing to the **Awesome GitHub Profiles** project! We appreciate your time and effort. Follow the steps below to contribute successfully.
4+
5+
## Getting Started
6+
7+
### 1. Fork the Repository
8+
9+
Click the **Fork** button at the top right of the repository page. This creates a copy of the repository under your GitHub account.
10+
11+
### 2. Clone Your Fork
12+
13+
After forking, clone your repository to your local machine:
14+
15+
```bash
16+
git clone https://github.com/YOUR_USERNAME/awesome-github-profiles.git
17+
```
18+
19+
Replace `YOUR_USERNAME` with your GitHub username.
20+
21+
### 3. Switch to the `gh-pages` Branch
22+
23+
Since the main code is in the `gh-pages` branch, navigate to that branch after cloning:
24+
25+
```bash
26+
cd awesome-github-profiles
27+
git checkout gh-pages
28+
```
29+
30+
### 4. Create a New Branch
31+
32+
Create a new branch for your feature or bug fix:
33+
34+
```bash
35+
git checkout -b your-feature-branch
36+
```
37+
38+
Use a descriptive name for your branch (e.g., `add-new-profile`, `fix-readme-typo`).
39+
40+
### 5. Make Your Changes
41+
42+
Make the necessary changes in your local repository. Follow the project's coding style and guidelines to ensure consistency.
43+
44+
### 6. Test Your Changes
45+
46+
If applicable, test your changes locally to ensure nothing breaks. This can include:
47+
48+
- Running the project to verify functionality.
49+
- Running tests if the project includes any testing tools.
50+
51+
### 7. Stage and Commit Your Changes
52+
53+
Once your changes are made, stage the files you want to commit:
54+
55+
```bash
56+
git add .
57+
```
58+
59+
Commit your changes with a clear message:
60+
61+
```bash
62+
git commit -m "Add new profile" # Be specific about what changes were made.
63+
```
64+
65+
### 8. Push to Your Fork
66+
67+
Push your new branch to your forked repository:
68+
69+
```bash
70+
git push origin your-feature-branch
71+
```
72+
73+
### 9. Submit a Pull Request (PR)
74+
75+
Navigate to the original repository on GitHub, and you should see an option to create a Pull Request. Click that and fill in the necessary details:
76+
77+
- Reference any issue your PR addresses (e.g., "Closes #123").
78+
- Explain clearly what your changes do.
79+
80+
After submitting your PR, the maintainers will review it. You may receive feedback or requests for changes, so keep an eye on the comments.
81+
82+
---

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This is the all in one place of awesome-github-profiles.
6969
## Contribute
7070

7171
Contributions are always welcome!
72-
Please read the [contribution guidelines](contributing.md) first.
72+
Please read the [Contribution Guidelines](./CONTRIBUTING.md) first.
7373

7474
## Special Thanks 🙇
7575
- [Dinesh Talwadker](https://github.com/dinxsh) [Hemant](https://github.com/dinxsh), [Nishant](https://github.com/dinxsh), [Ayushman](https://github.com/dinxsh)for being a core for this repo!

dashboard.css

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
2+
3+
* {
4+
margin: 0;
5+
padding: 0;
6+
box-sizing: border-box;
7+
}
8+
9+
body, input {
10+
font-family: "Poppins", sans-serif;
11+
}
12+
13+
.container {
14+
min-height: 100vh;
15+
width: 100%;
16+
background-color: #f4f4f4;
17+
display: flex;
18+
justify-content: center;
19+
align-items: center;
20+
position: relative;
21+
overflow: hidden;
22+
}
23+
24+
.dashboard-content {
25+
background-color: #ffffff;
26+
padding: 2rem;
27+
border-radius: 10px;
28+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
29+
text-align: center;
30+
width: 100%;
31+
max-width: 700px;
32+
}
33+
34+
h1 {
35+
font-size: 2.5rem;
36+
color: #333;
37+
margin-bottom: 1.5rem;
38+
}
39+
40+
h2 {
41+
font-size: 1.8rem;
42+
color: #444;
43+
margin-bottom: 1rem;
44+
}
45+
46+
ul {
47+
list-style-type: disc;
48+
padding-left: 20px;
49+
text-align: left;
50+
color: #555;
51+
}
52+
53+
ul li {
54+
margin-bottom: 10px;
55+
}
56+
57+
ul li a {
58+
color: #007bff;
59+
text-decoration: none;
60+
font-weight: 500;
61+
}
62+
63+
ul li a:hover {
64+
text-decoration: underline;
65+
color: #0056b3;
66+
}
67+
68+
.section {
69+
margin: 2rem 0;
70+
}
71+
72+
.homeBtn {
73+
position: absolute;
74+
top: 20px;
75+
left: 20px;
76+
background: #000000;
77+
color: #ffffff;
78+
padding: 10px 20px;
79+
border-radius: 10px;
80+
font-size: 1rem;
81+
font-weight: 500;
82+
text-decoration: none;
83+
cursor: pointer;
84+
transition: 0.3s;
85+
}
86+
87+
.homeBtn:hover {
88+
background-color: #444444;
89+
}
90+
91+
/* Responsive styles */
92+
@media (max-width: 768px) {
93+
.dashboard-content {
94+
padding: 1.5rem;
95+
}
96+
97+
h1 {
98+
font-size: 2rem;
99+
}
100+
101+
h2 {
102+
font-size: 1.6rem;
103+
}
104+
105+
ul li {
106+
font-size: 0.9rem;
107+
}
108+
109+
.homeBtn {
110+
font-size: 0.9rem;
111+
}
112+
}

dashboard.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Dashboard</title>
7+
<link rel="stylesheet" href="dashboard.css">
8+
</head>
9+
<body>
10+
<div class="container">
11+
<nav>
12+
<a href="index.html" class="homeBtn">Home</a>
13+
</nav>
14+
15+
<div class="dashboard-content">
16+
<h1>Welcome,User</h1>
17+
<section id="achievements" class="section">
18+
<H1>DASHBOARD</H1>
19+
<h2>Achievements</h2>
20+
<ul>
21+
<li>100 Days Coding Challenge - Completed</li>
22+
<li>200 Days Coding Challenge - In Progress</li>
23+
<li>Top Performer in Python - 2023</li>
24+
</ul>
25+
</section>
26+
27+
<section id="projects" class="section">
28+
<h2>Projects</h2>
29+
<ul>
30+
<li><a href="#">Ambulance Monitoring System</a></li>
31+
<li><a href="#">Landing Page Animation</a></li>
32+
<li><a href="#">Portfolio Website</a></li>
33+
</ul>
34+
</section>
35+
</div>
36+
</div>
37+
</body>
38+
</html>

index.html

Lines changed: 48 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap"
1111
rel="stylesheet"
1212
/>
13+
<link rel="stylesheet" href="styles/modal.css">
1314
<link rel="stylesheet" href="styles/styles.css" />
1415
<link rel="stylesheet" href="styles/pagination.css" />
1516
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
@@ -32,8 +33,9 @@
3233
<a href="./pages/events.html" class="navbar-link">Events</a>
3334
<a href="pages/blog.html" class="navbar-link">Learn</a>
3435
<a href="./pages/compare.html" class="navbar-link">Compare</a>
36+
<a href="login.html" class="navbar-link">Login</a>
3537

36-
38+
3739
<div class="toggle-switch">
3840
<input type="checkbox" id="theme-toggle">
3941
<label for="theme-toggle">
@@ -49,15 +51,27 @@
4951
<div></div>
5052
<div></div>
5153
</div>
52-
</nav>
53-
54+
</nav>
55+
5456
<div class="mobile-menu" id="mobile-menu">
5557
<a href="pages/githubbadge.html" class="navbar-links">Github-Badge</a>
5658
<a href="#" class="navbar-links">Tools</a>
57-
<a href="/events.html" class="navbar-links">Events</a>
59+
<a href="./pages/events.html" class="navbar-links">Events</a>
5860
<a href="pages/blog.html" class="navbar-links">Blog</a>
5961
<a href="https://github.com/recodehive/awesome-github-profiles/issues/new?assignees=&labels=%E2%9E%95+profile&projects=&template=add_profile.md&title=Add+Profile%3A+" class="navbar-links">Add Profile</a>
6062
<a href="pages/blog.html" class="navbar-links">Learn</a>
63+
<a href="login.html">Login</a>
64+
65+
<div class="toggle-switch">
66+
<input type="checkbox" id="theme-toggle">
67+
<label for="theme-toggle">
68+
<div class="switch-button">
69+
<span class="material-icons sun-icon">wb_sunny</span>
70+
<span class="material-icons moon-icon">brightness_2</span>
71+
</div>
72+
</label>
73+
</div>
74+
</div>
6175
</div>
6276

6377
<div class="side-icons">
@@ -75,7 +89,7 @@
7589
</div>
7690
<div class="icon-content">
7791
<a href="https://twitter.com/sanjay_kv_" target="_blank" aria-label="Twitter" data-social="twitter">
78-
<i class="fab fa-twitter"></i>
92+
<i class="fab fa-x-twitter"></i>
7993
<div class="filled"></div>
8094
</a>
8195
</div>
@@ -86,7 +100,7 @@
86100
</a>
87101
</div>
88102
<div class="icon-content">
89-
<a href="https://github.com/recodehive" target="_blank" aria-label="GitHub" data-social="github">
103+
<a href="https://github.com/sanjay-kv" target="_blank" aria-label="GitHub" data-social="github">
90104
<i class="fab fa-github"></i>
91105
<div class="filled"></div>
92106
</a>
@@ -143,19 +157,18 @@ <h1 class="main-heading">Awesome GitHub Profile READMEs</h1>
143157

144158
</div>
145159
<footer id="Contact" class="footer-2">
146-
<div class="footer-container" >
160+
<div class="footer-container">
147161
<div class="footer-content">
148162
<div class="footer-info">
149163
<img src="assets/recode.png" alt="Recode-Hive logo" class="footer-logo">
150164
</div>
151-
152165
<div class="footer-links">
153166
<div class="footer-section">
154-
<h6 class="footer-heading">ABOUT RECODE-HIVE</h6>
155-
<div>
156-
<a href="pages/help.html" class="footer-link">Contact Us</a>
157-
<a href="https://github.com/recodehive/awesome-github-profiles/blob/main/CODE_OF_CONDUCT.md" class="footer-link">Code of Conduct</a>
158-
</div>
167+
<h6 class="footer-heading">ABOUT RECODE-HIVE</h6>
168+
<div>
169+
<a href="pages/help.html" class="footer-link">Contact Us</a>
170+
<a href="https://github.com/recodehive/awesome-github-profiles/blob/main/CODE_OF_CONDUCT.md" class="footer-link">Code of Conduct</a>
171+
</div>
159172
</div>
160173
<div class="footer-section">
161174
<h6 class="footer-heading">GET INVOLVED</h6>
@@ -165,23 +178,22 @@ <h6 class="footer-heading">GET INVOLVED</h6>
165178
</div>
166179
</div>
167180
</div>
168-
169181
<div class="footer-description">
170-
<h5>
171-
We focus on quality content for the right people at the right time⏱️. What we are trying to do is help you to brand personal skills through GitHub readme.md, So we listing the best profiles & opportunity to list your profile to the world 🌎.
172-
</h5>
182+
<h5>We focus on quality content for the right people at the right time⏱️. What we are trying to do is help you brand personal skills through GitHub readme.md, listing the best profiles, and giving you the opportunity to list your profile to the world 🌎.</h5>
173183
<a href="pages/exploremore.html" class="footer-button">Explore</a>
174184
</div>
175185
</div>
176186
</div>
177187

178188
<div class="footer-bottom">
179189
<div class="footer-container">
180-
<p class="footer-copyright">
181-
&copy; <span id="dynamic-year"></span> Recode-Hive. Made with 🖤️ by the community. All rights reserved.
182-
</p>
190+
<p class="footer-copyright">
191+
&copy; <span id="dynamic-year"></span> Recode-Hive. Made with 🖤️ by the community. All rights reserved.
192+
</p>
183193
</div>
184-
</div>
194+
</div>
195+
</footer>
196+
185197

186198
<script>
187199
document.getElementById("dynamic-year").textContent = new Date().getFullYear();
@@ -198,6 +210,19 @@ <h5>
198210
<!-- Toast Notification Container -->
199211
<div id="toast-container"></div>
200212

213+
<!-- Profile Add Modal -->
214+
<div id="profileModal" class="modal">
215+
<div class="modal-content">
216+
<span class="close-button" id="closeModal">&times;</span>
217+
<img src="assets/recode-hive.png" alt="Recode Hive Icon" class="navbar-icon">
218+
<h2>Join the Recode Hive Community</h2>
219+
<p>Become part of an exclusive community of developers. Showcase your GitHub profile and connect with like-minded individuals to explore new opportunities.</p>
220+
<a href="https://github.com/recodehive/awesome-github-profiles/issues/new?assignees=&labels=%E2%9E%95+profile&projects=&template=add_profile.md&title=Add+Profile%3A+"
221+
class="add-profile-button">Add Your Profile</a>
222+
</div>
223+
</div>
224+
225+
<script src="scripts/profileModal.js"></script>
201226

202227
<script src="https://www.gstatic.com/firebasejs/7.14.6/firebase-app.js"></script>
203228
<script src="https://www.gstatic.com/firebasejs/7.14.6/firebase-database.js"></script>
@@ -206,6 +231,8 @@ <h5>
206231
<script src="scripts/dark-mode.js"></script>
207232
<script src="scripts/hamburger.js"></script>
208233
<script src="scripts/revealelementsonscroll.js"></script>
234+
<!-- Added script for new Twitter logo -->
235+
<script src="https://kit.fontawesome.com/856f4a44d7.js" crossorigin="anonymous"></script>
209236

210237
</body>
211238
</html>

0 commit comments

Comments
 (0)