Skip to content

Commit

Permalink
Improve project engagement layout on user profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
zoul committed Aug 1, 2024
1 parent 21ca150 commit 5fd7f96
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/people/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,13 @@ const ContactSidebar = ({ profile }: Profile) => {

const ProjectSection = ({ engagements }: Engagements) => (
<section>
<h2 className="typo-title2 mb-4">Kde jsem se zapojil*a v Česko.Digital</h2>
<h2 className="typo-title2 mb-4">Kde jsem se zapojil*a v Česko.Digital</h2>
<ul className="leading-loose">
{engagements.map((engagement) => (
<li key={engagement.id}>
<li
key={engagement.id}
className="flex flex-col items-baseline md:flex-row"
>
<Link
href={Route.toProject({ slug: engagement.projectSlug })}
className="typo-link mr-3"
Expand Down

0 comments on commit 5fd7f96

Please sign in to comment.