Skip to content

Commit

Permalink
[Home-Page] Add Section BAL
Browse files Browse the repository at this point in the history
  • Loading branch information
nkokla committed Aug 5, 2024
1 parent 5a2932a commit 6e271d7
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
'use client'

import { Card } from '@codegouvfr/react-dsfr/Card'
import { Button } from '@codegouvfr/react-dsfr/Button'
import styled from 'styled-components'

import Section from '@/components/Section'
import Notices from '@/components/Notices'
import SectionHero from '@/components/SectionHero'
import SectionTilesList from '@/components/SectionTilesList'
Expand All @@ -12,6 +17,17 @@ import dataActions from '@/data/sample-actions.json'
import dataQuotes from '@/data/sample-quotes.json'
import theme from '@/theme'

const CardContainer = styled.div`
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
& > div {
flex: 1 1 300px;
}
`

export default function Home() {
return (
<>
Expand Down Expand Up @@ -74,6 +90,60 @@ export default function Home() {
isSmallTiles
withoutLinkIcon
/>

<Section title="Devenir partenaire" theme="primary">
<CardContainer>
<div>
<Card
title="Adopter la charte"
titleAs="h3"
desc={(
<>La Charte de la Base Adresse Locale rassemble les organismes qui privilégient
le format Base Adresse Locale et s’engagent en matière de gouvernance. L’enjeu pour la
commune, autorité responsable de l’adresse, est d’identifier un référent en capacité de
l’assister au besoin.
</>
)}
footer={(
<Button
iconId="fr-icon-newspaper-line"
linkProps={{
href: '#',
}}
priority="secondary"
size="small"
>
Découvrir la charte
</Button>
)}
/>
</div>
<div>
<Card
title="Les différents modes de publication"
titleAs="h3"
desc={(
<>Cinq méthodes permettent de publier une Base Adresse Locale dans la Base Adresse
Nationale. L’éditeur Mes Adresses permet à la fois de mettre à jour et de publier
ses adresses.
</>
)}
footer={(
<Button
iconId="fr-icon-book-2-line"
linkProps={{
href: '#',
}}
priority="secondary"
size="small"
>
Accéder à la documentation
</Button>
)}
/>
</div>
</CardContainer>
</Section>
</>
)
}

0 comments on commit 6e271d7

Please sign in to comment.