mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-15 04:15:05 +01:00
26 lines
766 B
TypeScript
26 lines
766 B
TypeScript
|
/* eslint-disable react/no-unescaped-entities */
|
||
|
import { useTranslation } from "react-i18next";
|
||
|
|
||
|
import { Icon, Icons } from "@/components/Icon";
|
||
|
import { ThinContainer } from "@/components/layout/ThinContainer";
|
||
|
import { Heading1, Paragraph } from "@/components/utils/Text";
|
||
|
|
||
|
import { SubPageLayout } from "./layouts/SubPageLayout";
|
||
|
|
||
|
export function DmcaPage() {
|
||
|
const { t } = useTranslation();
|
||
|
|
||
|
return (
|
||
|
<SubPageLayout>
|
||
|
<ThinContainer>
|
||
|
<Heading1>{t("dmca.title")}</Heading1>
|
||
|
<Paragraph>{t("dmca.description")}</Paragraph>
|
||
|
<Paragraph className="flex space-x-3 items-center">
|
||
|
<Icon icon={Icons.MAIL} />
|
||
|
<span>dmca@movie-web.app</span>
|
||
|
</Paragraph>
|
||
|
</ThinContainer>
|
||
|
</SubPageLayout>
|
||
|
);
|
||
|
}
|