Skip to content

Commit

Permalink
Modifie la page ressources
Browse files Browse the repository at this point in the history
  • Loading branch information
derfurth committed Feb 15, 2024
1 parent 5947091 commit 5f85dec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/site/app/ressources/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,22 @@ export default async function Page() {
filenames: [],
subDirectory: [],
};
const annuaire: Directory = {
name: 'Annuaire des conseillers',
path: path.join(publicPath, 'fichiers/annuaire_des_conseillers'),
filenames: [],
subDirectory: [],
};

await fillDirectory(kit);
await fillDirectory(annuaire);
await fillDirectory(reglement);

return (
<Section>
<h1 className="pb-8">Ressources</h1>
<Dossier directory={reglement} depth={1} />
<Dossier directory={annuaire} depth={1} />
<Dossier directory={kit} depth={1} />
</Section>
);
Expand Down

0 comments on commit 5f85dec

Please sign in to comment.