mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
77 lines
3.5 KiB
TypeScript
77 lines
3.5 KiB
TypeScript
import Layout from "@/components/Layout";
|
|
|
|
// TODO fix page sizing
|
|
export default function Contact() {
|
|
return (
|
|
<Layout>
|
|
<section className="grid place-items-center bg-white dark:bg-gray-800">
|
|
<div className="pt-8 pb-32 lg:pt-16 px-4 mx-auto max-w-screen-md">
|
|
<h2
|
|
className="mb-4 text-4xl tracking-tight font-extrabold text-center text-gray-900 dark:text-white"
|
|
data-cy="header2"
|
|
>
|
|
Contactez-Nous
|
|
</h2>
|
|
<p className="mb-8 lg:mb-16 font-light text-center text-gray-500 dark:text-gray-400 sm:text-xl">
|
|
Vous souhaitez ajouter les tournois de votre fédération sur ce site?
|
|
Vous avez un problème technique? Vous aimeriez participer à ce
|
|
projet? Contactez-nous.
|
|
</p>
|
|
<form action="#" className="space-y-8">
|
|
<div>
|
|
<label
|
|
htmlFor="email"
|
|
className="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300"
|
|
>
|
|
Adresse e-mail
|
|
</label>
|
|
<input
|
|
type="email"
|
|
id="email"
|
|
className="shadow-sm bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500 dark:shadow-sm-light"
|
|
placeholder="nom@exemple.com"
|
|
required
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label
|
|
htmlFor="subject"
|
|
className="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300"
|
|
>
|
|
Sujet
|
|
</label>
|
|
<input
|
|
type="text"
|
|
id="subject"
|
|
className="block p-3 w-full text-sm text-gray-900 bg-gray-50 rounded-lg border border-gray-300 shadow-sm focus:ring-primary-500 focus:border-primary-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500 dark:shadow-sm-light"
|
|
placeholder="Le motif de ma demande"
|
|
required
|
|
/>
|
|
</div>
|
|
<div className="sm:col-span-2">
|
|
<label
|
|
htmlFor="message"
|
|
className="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300"
|
|
>
|
|
Votre message
|
|
</label>
|
|
<textarea
|
|
id="message"
|
|
rows={6}
|
|
className="block p-2.5 w-full text-sm text-gray-900 bg-gray-50 rounded-lg shadow-sm border border-gray-300 focus:ring-primary-500 focus:border-primary-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500"
|
|
placeholder="Détaillez ici votre demande..."
|
|
></textarea>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
className="py-3 px-5 text-sm font-medium text-center text-white rounded-lg bg-teal-600 sm:w-fit hover:bg-primary-800 focus:ring-4 focus:outline-none focus:ring-primary-300 dark:hover:bg-primary-700 dark:focus:ring-primary-800 dark:text-white"
|
|
>
|
|
Send message
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</Layout>
|
|
);
|
|
}
|