diff --git a/pages/rights/training/$.mdx b/pages/rights/training/$.mdx index 9ae67a0..0545653 100644 --- a/pages/rights/training/$.mdx +++ b/pages/rights/training/$.mdx @@ -1,3 +1,12 @@ -import Contact from './index' +import Training from './index' - + +# Training + +Are you interested in conducting the FULFIL training program on migrant women's access to fundamental rights in the EU? Look no further! + +The European Network of Migrant Women offers comprehensive "train the trainer" guidelines to empower you to facilitate effective FULFIL training sessions in your community or organisation. + +For more information and to access the training materials, please contact us at [info\@migrantwomennetwork.org](mailto:info@migrantwomennetwork.org?subject=Training). We're here to support you every step of the way in promoting migrant women's rights and dignity across Europe. + + diff --git a/pages/rights/training/index.tsx b/pages/rights/training/index.tsx index 8e08029..aa134b4 100644 --- a/pages/rights/training/index.tsx +++ b/pages/rights/training/index.tsx @@ -1,18 +1,8 @@ import React from 'react' import Layout from '../../layout' -const Training = () => { - return ( - - Training - FULFIL logo - - ) +const Training = ({ children }) => { + return {children} } export default Training