Skip to content

Commit 1d64836

Browse files
committed
tweak
1 parent 7256eeb commit 1d64836

1 file changed

Lines changed: 14 additions & 8 deletions

File tree

  • src/app/[locale]/(logged-out)/data-custodian-network/[dataCustodianNetworkId]/components/DataCustodianContent

src/app/[locale]/(logged-out)/data-custodian-network/[dataCustodianNetworkId]/components/DataCustodianContent/DataCustodianContent.tsx

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import { Fragment } from "react";
4-
import { Link } from "@mui/material";
4+
import { Link, Typography } from "@mui/material";
55
import { useTranslations } from "next-intl";
66
import { DataProvider as DataCustodians } from "@/interfaces/DataProvider";
77
import AccordionSectionSplit from "@/components/AccordionSectionSplit";
@@ -41,15 +41,21 @@ export default function DataCustodianContent({
4141
display: "grid",
4242
gridTemplateColumns: "repeat(2, 1fr)",
4343
}}>
44-
<div>{t("datasets", { length: datasets_count ?? 0 })}</div>
45-
<div>{t("datause", { length: durs_count ?? 0 })}</div>
46-
<div>{t("tools", { length: tools_count ?? 0 })}</div>
47-
<div>
44+
<Typography>
45+
{t("datasets", { length: datasets_count ?? 0 })}
46+
</Typography>
47+
<Typography>
48+
{t("datause", { length: durs_count ?? 0 })}
49+
</Typography>
50+
<Typography>
51+
{t("tools", { length: tools_count ?? 0 })}
52+
</Typography>
53+
<Typography>
4854
{t("publications", { length: publications_count ?? 0 })}
49-
</div>
50-
<div>
55+
</Typography>
56+
<Typography>
5157
{t("collections", { length: collections_count ?? 0 })}
52-
</div>
58+
</Typography>
5359
</Box>
5460
</Fragment>
5561
);

0 commit comments

Comments
 (0)