mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
Quick fixes.
This commit is contained in:
parent
94fe600d56
commit
501dbc9b9b
2 changed files with 7 additions and 7 deletions
|
@ -105,6 +105,7 @@ const sortedSections = sectionsConfig
|
||||||
people={core.people}
|
people={core.people}
|
||||||
team={core.teams["core-contributors"]}
|
team={core.teams["core-contributors"]}
|
||||||
core={true}
|
core={true}
|
||||||
|
contributors={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
import { parseAndWrapCaptions } from "../../utils/captionParser";
|
import { parseAndWrapCaptions } from "../../utils/captionParser";
|
||||||
|
|
||||||
const { people, team, core } = Astro.props;
|
const { people, team, core, contributors } = Astro.props;
|
||||||
|
|
||||||
// Filter based on the `core` parameter
|
// Filter based on the `core` parameter
|
||||||
const members = core ? people.filter((p) => {
|
const members = core ? people.filter((p) => {
|
||||||
|
@ -40,7 +40,7 @@ function personLink(person) {
|
||||||
<div
|
<div
|
||||||
class={`max-w-xs w-full max-h-[340px] bg-transparent overflow-hidden p-1 space-y-1 mb-2`}
|
class={`max-w-xs w-full max-h-[340px] bg-transparent overflow-hidden p-1 space-y-1 mb-2`}
|
||||||
>
|
>
|
||||||
<a href={personLink(person)} class={`${core ? "person-item" : ""}`}>
|
<a href={personLink(person)} class={`${core ? "person-item" : ""}`} target="_blank">
|
||||||
<img
|
<img
|
||||||
src={person.imageUrl}
|
src={person.imageUrl}
|
||||||
alt={person.name}
|
alt={person.name}
|
||||||
|
@ -50,7 +50,7 @@ function personLink(person) {
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
<h3 class="text-[10px] pt-2 font-bold leading-3 md:leading-9 md:text-[16px] ">{person.name}</h3>
|
<h3 class="text-[10px] pt-2 font-bold leading-3 md:leading-9 md:text-[16px] ">{person.name}</h3>
|
||||||
|
|
||||||
{person.refs && (
|
{!contributors ? person.refs && (
|
||||||
<p class="text-xs text-gray-500">
|
<p class="text-xs text-gray-500">
|
||||||
{person.refs.twitter && `@${person.refs.twitter}`}
|
{person.refs.twitter && `@${person.refs.twitter}`}
|
||||||
{person.refs.email && ` | Email: ${person.refs.email}`}
|
{person.refs.email && ` | Email: ${person.refs.email}`}
|
||||||
|
@ -61,13 +61,12 @@ function personLink(person) {
|
||||||
{person.refs.email && ` | Email: ${person.refs.email}`}
|
{person.refs.email && ` | Email: ${person.refs.email}`}
|
||||||
</p>
|
</p>
|
||||||
<p class="text-xs text-gray-500" set:html={person.caption && parseAndWrapCaptions(person.caption)}></p>
|
<p class="text-xs text-gray-500" set:html={person.caption && parseAndWrapCaptions(person.caption)}></p>
|
||||||
|
|
||||||
|
|
||||||
<p class="text-xs text-gray-500">
|
<p class="text-xs text-gray-500">
|
||||||
{person.refs.designation && `${person.refs.designation}`}
|
{person.refs.designation && `${person.refs.designation}`}
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
)}
|
) :
|
||||||
|
<p class="text-xs text-gray-500" set:html={person.caption && parseAndWrapCaptions(person.caption)}></p>}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
))
|
))
|
||||||
|
|
Loading…
Reference in a new issue