Files
echecsfrance/app/[lang]/contactez-nous/page.tsx
T
Owen Rees 7cb8352bf4 Page margins update (#50)
* padding top updated

* updated credits
2023-07-04 16:55:51 +02:00

25 lines
721 B
TypeScript

import { useTranslations } from "next-intl";
import ContactForm from "./ContactForm";
export default function Contact() {
const t = useTranslations("Contact");
return (
<section className="grid place-items-center bg-white dark:bg-gray-800">
<div className="mx-auto max-w-screen-md px-4 pb-16 pt-8 lg:pt-16">
<h2
className="mb-4 text-center text-4xl font-extrabold tracking-tight text-gray-900 dark:text-white"
data-test="header2"
>
{t("title")}
</h2>
<p className="mb-8 text-center font-light text-gray-500 dark:text-gray-400 sm:text-xl lg:mb-16">
{t("info")}
</p>
<ContactForm />
</div>
</section>
);
}