import { useT } from "../i18n/mod.ts";
export default function YourChoice() {
const t = useT();
const cards = [
{
icon: (
),
...t.yourChoice.cards.moderation,
},
{
icon: (
),
...t.yourChoice.cards.algorithms,
},
{
icon: (
),
...t.yourChoice.cards.portability,
},
];
return (
{t.yourChoice.heading}
{t.yourChoice.intro}
{cards.map((c) => (
{c.icon}
{c.title}
{c.body}
))}
{t.yourChoice.footnote}
);
}