Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions front/app/(visualiser)/interpeller/[siren]/step1/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// import Link from 'next/link';
import { Suspense } from 'react';

import Link from 'next/link';

import { FicheIdentite } from '#app/community/[siren]/components/FicheIdentite/FicheIdentite';
import { FicheIdentiteSkeleton } from '#app/community/[siren]/components/Skeletons/FicheIdentiteSkeleton';
import { TransparencySkeleton } from '#app/community/[siren]/components/Skeletons/TransparencySkeleton';
Expand Down Expand Up @@ -61,9 +62,19 @@ export default async function InterpellateStep1({ params }: CommunityPageProps)
<TransparencyScoreWithTrend
score={score}
trend={trend}
className='border-b-1 rounded-b-3xl border-0 shadow-none'
className='border-b-1 border-0 shadow-none'
/>
</Suspense>

<div className='flex justify-center rounded-b-3xl border-t border-primary-light px-4 py-4'>
<Link
href={`/community/${siren}`}
target='_blank'
className='text-sm text-muted-foreground underline underline-offset-2 hover:text-foreground'
>
Voir la fiche complète de {community.nom}
</Link>
</div>
</article>
</section>
</>
Expand Down
Loading