Skip to content

Commit

Permalink
Add remaining page content
Browse files Browse the repository at this point in the history
  • Loading branch information
Marjona6 committed Jul 2, 2024
1 parent 866f552 commit 1c9a8c1
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 29 deletions.
7 changes: 6 additions & 1 deletion pages/about/contact/$.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
import Contact from './index'

<Contact>Contact us</Contact>
<Contact>
# Contact us

Email: [info\@migrantwomennetwork.org](mailto:[email protected]?subject=Contact)

</Contact>
10 changes: 8 additions & 2 deletions pages/rights/report/$.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import Contact from './index'
import Report from './index'

<Contact />
<Report>
# Report
[WOMEN’S RIGHTS PERSPECTIVE ON THE EU CHARTER OF FUNDAMENTAL RIGHTS](https://www.migrantwomennetwork.org/2024/05/16/womens-rights-perspective-on-the-eu-charter-of-fundamental-rights/)

Women’s Rights Perspective on the EU Charter of Fundamental Rights - European Network of Migrant Women (migrantwomennetwork.org)

</Report>
14 changes: 2 additions & 12 deletions pages/rights/report/index.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
import React from 'react'
import Layout from '../../layout'

const Report = () => {
return (
<Layout>
Report
<img
src="/images/project-logos/white-bg.png"
alt="FULFIL logo"
height={75}
width={75}
/>
</Layout>
)
const Report = ({ children }) => {
return <Layout>{children}</Layout>
}

export default Report
14 changes: 12 additions & 2 deletions pages/rights/resources/$.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
import Contact from './index'
import Resources from './index'

<Contact />
<Resources>

# Resources

[FACT SHEETS](https://drive.google.com/drive/folders/1gdVjCHno_oS3pfqlwMZXmv3Jz3MFGyOJ?usp=drive_link)

[SUBMIT A CASE FOR THE DATABASE](https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAO__QntMuVURjQ5SDk3OTNQS01UUVpXVFI0N09QN1dYMS4u)

Note: The following survey aims to gather case law related to migrant women’s fundamental rights violation in the EU. All answers are optional and cases can cover different jurisdictions.

</Resources>
14 changes: 2 additions & 12 deletions pages/rights/resources/index.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
import React from 'react'
import Layout from '../../layout'

const Resources = () => {
return (
<Layout>
Resources
<img
src="/images/project-logos/white-bg.png"
alt="FULFIL logo"
height={75}
width={75}
/>
</Layout>
)
const Resources = ({ children }) => {
return <Layout>{children}</Layout>
}

export default Resources

0 comments on commit 1c9a8c1

Please sign in to comment.