Skip to content

Commit

Permalink
πŸ’„ group job company & title
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredkiss3 committed Sep 24, 2024
1 parent e0efcd4 commit 800bafb
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -142,16 +142,18 @@ const projects = (await getCollection("projects")).sort(
: `${startDate} ${endDate}`;
return (
<li>
<article class="flex flex-col gap-2">
<h3 class="text-lg font-semibold">
<a target="_blank" rel="noopener noreferrer" href={xp.link}>
{xp.company.toLowerCase()}
</a>
</h3>
<article class="flex flex-col gap-3">
<div class="flex flex-col gap-1">
<h3 class="text-lg font-semibold">
<a target="_blank" rel="noopener noreferrer" href={xp.link}>
{xp.company.toLowerCase()}
</a>
</h3>

<h4 class="lowercase text-lg">
{xp.jobTitle} ({formattedDateRange})
</h4>
<h4 class="lowercase text-lg">
{xp.jobTitle} ({formattedDateRange})
</h4>
</div>

<div class="text-zinc-700/90 dark:text-white/80 [&_ul]:ms-6 [&_ul>li]:list-disc">
<Content />
Expand Down

0 comments on commit 800bafb

Please sign in to comment.