import classNames from "classnames"; import React from "react"; import { Trans, useTranslation } from "react-i18next"; import { ThinContainer } from "@/components/layout/ThinContainer"; import { MwLink } from "@/components/text/Link"; import { Heading1, Paragraph } from "@/components/utils/Text"; import { PageTitle } from "@/pages/parts/util/PageTitle"; import { conf } from "@/setup/config"; import { SubPageLayout } from "./layouts/SubPageLayout"; // From about just removed the numbers export function Ol(props: { items: React.ReactNode[] }) { return (
    {props.items.map((child, i) => { return (
  1. {i !== props.items.length - 1 ? (
    ) : null}
    {child}
  2. ); })}
); } function Item(props: { title: string; children: React.ReactNode }) { return ( <>

{props.title}

{props.children}
); } export function SupportPage() { const { t } = useTranslation(); return ( {t("support.title")} , }} />
    , ]} /> ); }