Skip to content

Commit 5cfbbdb

Browse files
update export compliance matrix
1 parent 0dd89a0 commit 5cfbbdb

File tree

1 file changed

+43
-24
lines changed

1 file changed

+43
-24
lines changed

app/[locale]/download/page.tsx

Lines changed: 43 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ import type { Metadata } from "next";
33
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
44
import DefaultImageCard from "./components/DefaultImage/Card";
55
import CloudImageCard from "./components/CloudImage/Card";
6+
import {
7+
Table,
8+
TableBody,
9+
TableCaption,
10+
TableCell,
11+
TableHead,
12+
TableHeader,
13+
TableRow,
14+
} from "@/components/ui/table";
615

716
export const metadata: Metadata = {
817
title: "Download - Rocky Linux",
@@ -831,30 +840,40 @@ const DownloadPage = () => {
831840
<p className="mt-2 text-sm">{t("exportCompliance.text1")}</p>
832841
<p className="mt-1 text-sm">{t("exportCompliance.text2")}</p>
833842
<p className="mt-1 text-sm">{t("exportCompliance.narrative")}</p>
834-
<table>
835-
<tbody>
836-
<tr>
837-
<th scope="row">{t("exportCompliance.product_title")}</th>
838-
<td>{t("exportCompliance.product_text")}</td>
839-
</tr>
840-
<tr>
841-
<th scope="row">{t("exportCompliance.eccn_title")}</th>
842-
<td>{t("exportCompliance.eccn_text")}</td>
843-
</tr>
844-
<tr>
845-
<th scope="row">{t("exportCompliance.exception_title")}</th>
846-
<td>{t("exportCompliance.exception_text")}</td>
847-
</tr>
848-
<tr>
849-
<th scope="row">{t("exportCompliance.ccats_title")}</th>
850-
<td>{t("exportCompliance.ccats_text")}</td>
851-
</tr>
852-
<tr>
853-
<th scope="row">{t("exportCompliance.ern_title")}</th>
854-
<td>{t("exportCompliance.ern_text")}</td>
855-
</tr>
856-
</tbody>
857-
</table>
843+
<Table className="mt-12">
844+
<TableBody>
845+
<TableRow>
846+
<TableCell className="font-bold">
847+
{t("exportCompliance.product_title")}
848+
</TableCell>
849+
<TableCell>{t("exportCompliance.product_text")}</TableCell>
850+
</TableRow>
851+
<TableRow>
852+
<TableCell className="font-bold">
853+
{t("exportCompliance.eccn_title")}
854+
</TableCell>
855+
<TableCell>{t("exportCompliance.eccn_text")}</TableCell>
856+
</TableRow>
857+
<TableRow>
858+
<TableCell className="font-bold">
859+
{t("exportCompliance.exception_title")}
860+
</TableCell>
861+
<TableCell>{t("exportCompliance.exception_text")}</TableCell>
862+
</TableRow>
863+
<TableRow>
864+
<TableCell className="font-bold">
865+
{t("exportCompliance.ccats_title")}
866+
</TableCell>
867+
<TableCell>{t("exportCompliance.ccats_text")}</TableCell>
868+
</TableRow>
869+
<TableRow>
870+
<TableCell className="font-bold">
871+
{t("exportCompliance.ern_title")}
872+
</TableCell>
873+
<TableCell>{t("exportCompliance.ern_text")}</TableCell>
874+
</TableRow>
875+
</TableBody>
876+
</Table>
858877
</div>
859878
</div>
860879
</div>

0 commit comments

Comments
 (0)