-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
import Contact from './index' | ||
import Training from './index' | ||
|
||
<Contact /> | ||
<Training> | ||
# 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:[email protected]?subject=Training). We're here to support you every step of the way in promoting migrant women's rights and dignity across Europe. | ||
|
||
</Training> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,8 @@ | ||
import React from 'react' | ||
import Layout from '../../layout' | ||
|
||
const Training = () => { | ||
return ( | ||
<Layout> | ||
Training | ||
<img | ||
src="/images/project-logos/white-bg.png" | ||
alt="FULFIL logo" | ||
height={75} | ||
width={75} | ||
/> | ||
</Layout> | ||
) | ||
const Training = ({ children }) => { | ||
return <Layout>{children}</Layout> | ||
} | ||
|
||
export default Training |