2024-07-01 13:11:20 +02:00
|
|
|
import { AutoGrid } from ':components/AutoGrid.tsx'
|
2024-07-11 11:29:53 +02:00
|
|
|
import MemberCardList from ':islands/MemberCardList.tsx'
|
2024-02-15 14:04:01 +01:00
|
|
|
|
|
|
|
export default function Membres() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<h1>Nos membres</h1>
|
|
|
|
<section>
|
|
|
|
<h2>Permanents</h2>
|
|
|
|
<AutoGrid columnWidth='15rem'>
|
2024-07-11 11:29:53 +02:00
|
|
|
<MemberCardList
|
|
|
|
filters={[['group', 'user.admin']]}
|
|
|
|
usePlaceholder={true}
|
|
|
|
useObserver={true}
|
|
|
|
/>
|
2024-02-15 14:04:01 +01:00
|
|
|
</AutoGrid>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h2>Bénévoles</h2>
|
|
|
|
<AutoGrid columnWidth='15rem'>
|
2024-07-11 11:29:53 +02:00
|
|
|
<MemberCardList
|
|
|
|
filters={[['group', 'user.member']]}
|
|
|
|
usePlaceholder={true}
|
|
|
|
useObserver={true}
|
|
|
|
/>
|
2024-02-15 14:04:01 +01:00
|
|
|
</AutoGrid>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h2>Service civique</h2>
|
2024-07-11 11:29:53 +02:00
|
|
|
{/* <AutoGrid columnWidth='15rem'></AutoGrid> */}
|
2024-02-15 14:04:01 +01:00
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h2>Stage</h2>
|
2024-07-11 11:29:53 +02:00
|
|
|
{/* <AutoGrid columnWidth='15rem'></AutoGrid> */}
|
2024-02-15 14:04:01 +01:00
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h2>Étudiants</h2>
|
2024-07-11 11:29:53 +02:00
|
|
|
{/* <AutoGrid columnWidth='15rem'></AutoGrid> */}
|
2024-02-15 14:04:01 +01:00
|
|
|
</section>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|