Skip to content
Merged
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
16 changes: 9 additions & 7 deletions src/_includes/bio.njk
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
{% if bio %}
<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> Professional Bio
<span class="w-8 h-[2px] bg-accent" aria-hidden="true"></span> Professional Bio
Comment thread
jbampton marked this conversation as resolved.
</h2>
<div class="text-[var(--text-main)] text-lg leading-relaxed whitespace-pre-line">
{{ bio }}
Expand All @@ -86,18 +86,20 @@
{% 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" aria-hidden="true"></span> Technologies
Comment thread
jbampton marked this conversation as resolved.
</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 %}
{% endif %}

<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">
<span class="w-8 h-[2px] bg-accent"></span> Mini-Game
<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" aria-hidden="true"></span> Mini-Game
</h2>
<p class="text-sm text-[var(--text-muted)] mb-4">Catch the skill tiles before they fall! Collect enough to win XP.</p>
<button
Expand Down
Loading