Skip to content

Commit

Permalink
docs: add all organisations to homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
Yolijn committed Aug 23, 2024
1 parent 312ccd8 commit f5e0448
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 7 deletions.
4 changes: 4 additions & 0 deletions src/components/CardGroup.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
--cardgroup-card-box-shadow: none;
--cardgroup-card-min-height: 90px;
--cardgroup-card-justify-content: center;
--card-illustration-margin-inline-end: 16px;
--card-illustration-margin-inline-start: 16px;
}

.cardgroup__card--medium {
Expand All @@ -71,6 +73,8 @@
background-color: var(--card-illustration-background-color);
display: flex;
justify-content: center;
margin-inline-end: var(--card-illustration-margin-inline-end);
margin-inline-start: var(--card-illustration-margin-inline-start);
}

.card__illustration--background {
Expand Down
48 changes: 41 additions & 7 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export default function Home() {
</HomepageHero>
<div className="container" style={{ paddingBlockEnd: '40px' }}>
<Heading2>Meedoen als...</Heading2>

<CardGroup appearance="medium">
<Card component="section" appearance="small">
{/* <CardIllustration background>
Expand Down Expand Up @@ -124,7 +123,6 @@ export default function Home() {
</CardContent>
</Card>
</CardGroup>

<Heading2>Wie doen er al mee?</Heading2>
<CardGroup appearance="small">
<Card appearance="small" href="https://github.com/nl-design-system/utrecht">
Expand All @@ -143,25 +141,61 @@ export default function Home() {
/>
</CardIllustration>
</Card>
<Card appearance="small" href="https://github.com/nl-design-system/amsterdam">
<CardIllustration>
<Image
src="https://raw.githubusercontent.com/nl-design-system/documentatie/assets/meedoen__amsterdam.svg"
alt="Amsterdam logo"
/>
</CardIllustration>
</Card>
<Card appearance="small" href="https://github.com/nl-design-system/rotterdam">
<CardIllustration>
<Image
src="https://raw.githubusercontent.com/nl-design-system/documentatie/assets/meedoen__rotterdam.svg"
alt="Rotterdam logo"
/>
</CardIllustration>
</Card>
<Card appearance="small" href="https://github.com/nl-design-system/tilburg">
<CardIllustration>
<Image
src="https://raw.githubusercontent.com/nl-design-system/documentatie/assets/meedoen__tilburg.png"
alt="Tilburg logo"
/>
</CardIllustration>
</Card>
<Card appearance="small" href="https://github.com/nl-design-system/rvo">
<CardIllustration>
<Image
src="https://raw.githubusercontent.com/nl-design-system/documentatie/assets/meedoen__rvo.svg"
alt="RVO logo"
alt="Rijksdienst voor Ondernemend Nederland logo"
/>
</CardIllustration>
</Card>
<Card appearance="small" href="https://github.com/nl-design-system/amsterdam">
<Card appearance="small" href="https://github.com/nl-design-system/lux">
<CardIllustration>
<Image
src="https://raw.githubusercontent.com/nl-design-system/documentatie/assets/meedoen__amsterdam.svg"
alt="Amsterdam logo"
src="https://raw.githubusercontent.com/nl-design-system/documentatie/assets/meedoen__logius.png"
alt="Logius logo"
/>
</CardIllustration>
</Card>
<Card appearance="small" href="https://github.com/nl-design-system/rijkshuisstijl-community">
<CardIllustration>
<Image
src="https://raw.githubusercontent.com/nl-design-system/documentatie/assets/meedoen__rijkshuisstijl-community.png"
alt="Rijkshuisstijl Community"
/>
</CardIllustration>
</Card>
</CardGroup>
<Paragraph className="homepage__paragraph">
En ruim 30 <Link href="https://github.com/nl-design-system/themes">organisaties met een eigen thema</Link>
Naast de organisaties die componenten bijdragen doen{' '}
<DocusaurusLink to="/community/wie-doet-mee" className="utrecht-link">
diverse andere organisaties
</DocusaurusLink>{' '}
mee in de community van NL Design System.
</Paragraph>
</div>
<div className="container" style={{ paddingBlockStart: '40px', paddingBlockEnd: '40px' }}>
Expand Down

0 comments on commit f5e0448

Please sign in to comment.