Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
equipe.js 510 B
Newer Older
  • Learn to ignore specific revisions
  • import React from 'react';
    import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
    import Layout from '@theme/Layout';
    import { Team } from '@site/src/components/TeamComponent';
    
    const pageTitle = "Équipe"
    
    
    export default function Home() {
      const {siteConfig} = useDocusaurusContext();
      return (
        <Layout
          title={`${pageTitle} - ${siteConfig.title}`}
          description="Description will go into a meta tag in <head />">
          <main>
            <Team />
          </main>
        </Layout>
      );
    }