Skip to content

Commit

Permalink
feat: add link to linkedin and tchap for agents (#1250)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmonnier9 authored Oct 4, 2024
1 parent 47def12 commit a1753bc
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion components/feedback-modal/feedback-form.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client';
import { useRef, useState } from 'react';
import { HeightTransition } from '#components-ui/animation/height-transition';
import '#components-ui/floating-modal/style.module.css';
import { useRef, useState } from 'react';
import { sendFeedback } from './actions';
import FeedbackMessage from './feedback-message';
import styles from './style.module.css';
Expand Down Expand Up @@ -78,6 +78,25 @@ export default function FeedbackForm({ onSubmit, agentContactInfo }: IProps) {
/>
<label htmlFor="feedback-question">Une question ?</label>
</fieldset>
<p>
Retrouvez-nous et posez-nous vos questions sur{' '}
<a
href="https://tchap.gouv.fr/#/room/#annuaire-entreprises:agent.dinum.tchap.gouv.fr"
target="_blank"
rel="noopener noreferrer"
>
Tchap
</a>{' '}
et sur{' '}
<a
href="https://www.linkedin.com/company/annuaire-des-entreprises"
target="_blank"
rel="noopener noreferrer"
>
LinkedIn
</a>
.
</p>
{type && <FeedbackMessage type={type} isErrored={isErrored} />}
</form>
</HeightTransition>
Expand Down

0 comments on commit a1753bc

Please sign in to comment.