Skip to content

Commit

Permalink
fixed: review
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Catinaud Taris committed Oct 9, 2024
1 parent b9f9621 commit 1fc871f
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions src/app/[locale]/to-act/act.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,13 @@ const Act = () => {
title={t("eat.title")}
titleLevel="h2"
content={t("eat.content")}
linkLabel={t("eat.link")}
link={t("eat.target")}
ctas={[
{
label: t("eat.link"),
target: t("eat.target"),
isBlank: true,
},
]}
className="bg-pink1"
contentPosition="right"
mode="light"
Expand Down Expand Up @@ -94,10 +99,13 @@ const Act = () => {
title={t("report.title")}
titleLevel="h2"
content={t("report.content")}
linkLabel={t("report.link")}
link={t("report.target")}
linkBlank
linkIcon={false}
ctas={[
{
label: t("report.link"),
target: t("report.target"),
isBlank: true,
},
]}
className="bg-pink1"
contentPosition="right"
mode="light"
Expand Down

0 comments on commit 1fc871f

Please sign in to comment.