Skip to content
Merged
Changes from 2 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
10 changes: 6 additions & 4 deletions src/_includes/bio.njk
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,19 @@
{% endif %}

{% if languages is defined and languages is not null %}
<div class="user-card p-8 rounded-3xl">
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6">Technologies</h2>
<div class="user-card p-8 sm:p-12 rounded-3xl">
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
Comment thread
jbampton marked this conversation as resolved.
<span class="w-8 h-[2px] bg-accent"></span> Technologies
</h2>
Comment thread
jbampton marked this conversation as resolved.
<div class="flex flex-wrap gap-3">
{% set skills = languages.split(' ') %}
{% include "skills-list.njk" %}
</div>
</div>
{% endif %}
Comment thread
jbampton marked this conversation as resolved.
Outdated

<div class="user-card p-8 rounded-3xl">
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-4 flex items-center gap-2">
<div class="user-card p-8 sm:p-12 rounded-3xl">
<h2 class="text-xs font-black uppercase tracking-[0.3em] text-[var(--text-muted)] mb-6 flex items-center gap-2">
<span class="w-8 h-[2px] bg-accent"></span> Mini-Game
Comment thread
jbampton marked this conversation as resolved.
Outdated
</h2>
<p class="text-sm text-[var(--text-muted)] mb-4">Catch the skill tiles before they fall! Collect enough to win XP.</p>
Expand Down
Loading