Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ layout: false
{% set country = person.data.country %}
{% set location = person.data.location %}
{% if location or country %}
<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)]">
<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)]">
Comment thread
jbampton marked this conversation as resolved.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The removal of shrink-0 combined with the flex-1 container on the left (line 27) will cause this metadata block to be squeezed to its minimum width whenever the name or role text is long. While this forces the wrapping you intended, it can lead to an awkward vertical stack of single words if the available space is very tight. Consider adding a min-w-[...] or max-w-[...] to maintain a more balanced layout between the name and the location metadata.

{% if location %}<span>{{ location }}</span>{% endif %}
{% if country %}<span>{{ country }}</span>{% endif %}
</div>
Expand Down
16 changes: 16 additions & 0 deletions src/users/2005rishabh.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Rishabh Singh
github: 2005rishabh
website: https://portfolio-gamma-drab-69.vercel.app/
email: singh10rishab@gmail.com
instagram: https://www.instagram.com/20_rishabh_05/
linkedin: https://www.linkedin.com/in/rishabh-singh-505coder/
country: India
location: Faridabad
role: Full Stack Developer & Open Source Contributor
languages: JavaScript TypeScript Python Java PHP
bio: |
I am a 3rd-year B.Tech Computer Science student and a passionate Full Stack Web Developer specializing in the MERN stack.

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.

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.
Loading