You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
689 B
26 lines
689 B
import styles from './index.module.scss';
|
|
import SeoConfig from "../../components/seo-config/seo-config";
|
|
import Layout from "../../components/layout/layout";
|
|
|
|
/* eslint-disable-next-line */
|
|
export interface ContactUsProps {
|
|
}
|
|
|
|
export function ContactUs({menuHeader, menuFooter, seo}) {
|
|
return (
|
|
<>
|
|
<SeoConfig {...seo} />
|
|
<Layout menuHeader={menuHeader}
|
|
menuFooter={menuFooter}>
|
|
<main className={styles['blog-container'] + " w-full"}>
|
|
<div className="container max-w-screen-xl px-6 py-4 md:py-12 h-full mx-auto">
|
|
<p>Contenu a venir</p>
|
|
</div>
|
|
</main>
|
|
</Layout>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default ContactUs;
|