Skip to content

Commit c808576

Browse files
Merge branch 'main' into main
2 parents 0973628 + eb004af commit c808576

8 files changed

Lines changed: 79 additions & 10 deletions

File tree

.gitattributes

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Enforce LF line endings for all text files to prevent CRLF issues on Windows
2+
* text=auto eol=lf
3+
4+
# Explicitly enforce LF for YAML files (prevents yamllint failures on Windows)
5+
*.yaml text eol=lf
6+
*.yml text eol=lf
7+
8+
# Binary files
9+
*.png binary
10+
*.jpg binary
11+
*.jpeg binary
12+
*.gif binary
13+
*.ico binary
14+
*.webp binary
15+
*.avif binary
16+
*.pdf binary
17+
*.woff binary
18+
*.woff2 binary

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ repos:
106106
- id: mixed-line-ending
107107
name: run mixed-line-ending
108108
description: replaces or checks mixed line ending
109+
args: [--fix=lf]
109110

110111
- repo: https://github.com/biomejs/pre-commit
111112
rev: "v2.4.8"

src/_includes/bio.njk

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
{% if bio %}
7878
<div class="user-card p-8 sm:p-12 rounded-3xl">
7979
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
80-
<span class="w-8 h-[2px] bg-accent"></span> Professional Bio
80+
<span class="w-8 h-[2px] bg-accent" aria-hidden="true"></span> Professional Bio
8181
</h2>
8282
<div class="text-[var(--text-main)] text-lg leading-relaxed whitespace-pre-line">
8383
{{ bio }}
@@ -86,18 +86,20 @@
8686
{% endif %}
8787

8888
{% if languages is defined and languages is not null %}
89-
<div class="user-card p-8 rounded-3xl">
90-
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6">Technologies</h2>
89+
<div class="user-card p-8 sm:p-12 rounded-3xl">
90+
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
91+
<span class="w-8 h-[2px] bg-accent" aria-hidden="true"></span> Technologies
92+
</h2>
9193
<div class="flex flex-wrap gap-3">
9294
{% set skills = languages.split(' ') %}
9395
{% include "skills-list.njk" %}
9496
</div>
9597
</div>
96-
{% endif %}
98+
{% endif %}
9799

98-
<div class="user-card p-8 rounded-3xl">
99-
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-4 flex items-center gap-2">
100-
<span class="w-8 h-[2px] bg-accent"></span> Mini-Game
100+
<div class="user-card p-8 sm:p-12 rounded-3xl">
101+
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
102+
<span class="w-8 h-[2px] bg-accent" aria-hidden="true"></span> Mini-Game
101103
</h2>
102104
<p class="text-sm text-[var(--text-muted)] mb-4">Catch the skill tiles before they fall! Collect enough to win XP.</p>
103105
<button

src/_includes/footer-details.njk

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@
1313
</p>
1414

1515
<div class="flex items-center justify-center md:justify-start gap-3 mt-4">
16-
<a href="https://www.11ty.dev/" target="_blank" class="text-[10px] font-bold px-2 py-1 rounded bg-[var(--bg-card)] border border-[var(--border-color)] text-[var(--text-muted)] hover:text-accent transition-all">🎈 11ty</a>
17-
<a href="https://tailwindcss.com/" target="_blank" class="text-[10px] font-bold px-2 py-1 rounded bg-[var(--bg-card)] border border-[var(--border-color)] text-[var(--text-muted)] hover:text-accent transition-all">🌊 Tailwind</a>
16+
{% for item in [
17+
{ url: "https://www.11ty.dev/", text: "🎈 11ty", label: "11ty (opens in a new tab)" },
18+
{ url: "https://mozilla.github.io/nunjucks/", text: "🔧 Nunjucks", label: "Nunjucks (opens in a new tab)" },
19+
{ url: "https://tailwindcss.com/", text: "🌊 Tailwind", label: "Tailwind CSS (opens in a new tab)" }
20+
] %}
21+
<a href="{{ item.url }}" target="_blank" rel="noopener noreferrer" aria-label="{{ item.label }}" class="text-[10px] font-bold px-2 py-1 rounded bg-[var(--bg-card)] border border-[var(--border-color)] text-[var(--text-muted)] hover:text-accent transition-all">{{ item.text }}</a>
22+
{% endfor %}
1823
</div>
1924
</div>
2025

src/index.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ layout: false
3131
{% set country = person.data.country %}
3232
{% set location = person.data.location %}
3333
{% if location or country %}
34-
<div class="flex flex-col items-end gap-0.5 shrink-0 text-[10px] bg-[var(--bg-footer)] text-[var(--text-muted)] px-2 py-1 rounded font-bold uppercase border border-[var(--border-color)]">
34+
<div class="flex flex-col items-end text-right gap-0.5 text-[10px] bg-[var(--bg-footer)] text-[var(--text-muted)] px-2 py-1 rounded font-bold uppercase border border-[var(--border-color)] min-w-[7rem] max-w-[10rem] shrink-0">
3535
{% if location %}<span>{{ location }}</span>{% endif %}
3636
{% if country %}<span>{{ country }}</span>{% endif %}
3737
</div>

src/users/2005rishabh.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Rishabh Singh
2+
github: 2005rishabh
3+
website: https://portfolio-gamma-drab-69.vercel.app/
4+
email: singh10rishab@gmail.com
5+
instagram: https://www.instagram.com/20_rishabh_05/
6+
linkedin: https://www.linkedin.com/in/rishabh-singh-505coder/
7+
country: India
8+
location: Faridabad
9+
role: Full Stack Developer & Open Source Contributor
10+
languages: JavaScript TypeScript Python Java PHP
11+
bio: |
12+
I am a 3rd-year B.Tech Computer Science student and a passionate Full Stack Web Developer specializing in the MERN stack.
13+
14+
I thrive on building scalable web applications and contributing to the open-source ecosystem. Recently, I've been enhancing AI-driven platforms like 'iloveAgents' by improving UI/UX and developer onboarding workflows through automated pre-fill logic.
15+
16+
With a strong foundation in Data Structures and Algorithms, I am dedicated to writing clean, maintainable code and building real-world projects that solve actual user problems. Currently exploring the intersection of Web Development and Machine Learning while actively preparing for internship opportunities.

src/users/GulshanJha00.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Gulshan
2+
github: GulshanJha00
3+
website: https://gulshankumar.xyz
4+
email: gk4763549@gmail.com
5+
linkedin: https://www.linkedin.com/in/gulshankumar0/
6+
country: India
7+
location: Bangalore
8+
role: MERN Stack Developer
9+
languages: JavaScript TypeScript C++ Python
10+
bio: |
11+
MERN stack developer focused on Next.js, backend systems, and open source.
12+
Currently learning DevOps and improving problem solving skills through DSA and real-world projects.
13+
Interested in scalable web applications, UI/UX, and developer tooling.

src/users/saishwadnere.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Saish Milind Wadnere
2+
github: SaishWadnere
3+
email: saishwadnere3@gmail.com
4+
instagram: https://www.instagram.com/saish_wadnere/
5+
twitter: https://x.com/saishwadnere
6+
linkedin: https://www.linkedin.com/in/saish-wadnere/
7+
country: India
8+
location: Nashik
9+
role: Student
10+
languages: Java JavaScript React HTML CSS
11+
bio: |
12+
Computer Engineering student at Sandip Institute of Technology and Research Centre, Nashik.
13+
Focused on backend development and cloud technologies, with strong experience in React and CSS.
14+
Passionate about building scalable, real-world systems and continuously improving through hands-on projects.

0 commit comments

Comments
 (0)