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.
nx-guitar-school/apps/website/pages/about-us/index.tsx

23 lines
618 B

import SeoConfig from "../../components/seo-config/seo-config";
import Layout from "../../components/layout/layout";
import styles from './index.module.scss';
export function AboutUs({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 AboutUs;