import { Head } from '@inertiajs/react';
import ContactUsContent from '../components/pages/ContactUsContent';

export default function ContactUs() {
  return (
    <>
      <Head title="Contactez-nous" />
      <ContactUsContent />
    </>
  );
}
