Skip to content

Commit

Permalink
fix(partners): fixed two buttons become partner
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-gueguen committed Dec 13, 2024
1 parent 0e9775a commit d7f1484
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions web/landing/partners.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { shuffle } from "lodash/collection";
import { LoadingButton } from "common/components/LoadingButton";
import { usePageTitle } from "../common/UsePageTitle";
import { Main } from "../common/semantics/Main";
import { LinkButton } from "../common/LinkButton";

// This condition actually should detect if it's a Node environment
if (typeof require.context === "undefined") {
Expand Down Expand Up @@ -181,12 +182,13 @@ export function Partners() {
</LoadingButton>
)}
<div>
<LoadingButton
<LinkButton
className={classes.cta}
href="mailto:[email protected]"
to="mailto:[email protected]"
priority="primary"
>
Devenir partenaire
</LoadingButton>
</LinkButton>
</div>
</Grid>
<Grid item xs={12} md={6} textAlign="center">
Expand Down Expand Up @@ -243,12 +245,13 @@ export function Partners() {
</Grid>
))}
</Grid>
<LoadingButton
<LinkButton
className={classes.cta}
href="mailto:[email protected]"
to="mailto:[email protected]"
priority="primary"
>
S'interfacer avec Mobilic
</LoadingButton>
</LinkButton>
</Box>
<Box>
<Typography
Expand Down

0 comments on commit d7f1484

Please sign in to comment.