diff --git a/src/components/CustomInput.tsx b/src/components/CustomInput.tsx
index c84a6ff..a916f25 100644
--- a/src/components/CustomInput.tsx
+++ b/src/components/CustomInput.tsx
@@ -34,7 +34,7 @@ export const CustomInput = React.forwardRef<
required
/>
-
+
Please enter your {label}
{match !== undefined && (
diff --git a/src/components/CustomTextarea.tsx b/src/components/CustomTextarea.tsx
index e53a4c8..a6570c3 100644
--- a/src/components/CustomTextarea.tsx
+++ b/src/components/CustomTextarea.tsx
@@ -24,7 +24,7 @@ export const CustomTextarea = React.forwardRef<
required
/>
-
+
Please enter your {label}
diff --git a/src/components/ProjectAim.astro b/src/components/ProjectAim.astro
new file mode 100644
index 0000000..565432a
--- /dev/null
+++ b/src/components/ProjectAim.astro
@@ -0,0 +1,29 @@
+---
+interface Props {
+ color: "blue" | "primary" | "brown"
+}
+
+const { color } = Astro.props
+---
+
+
diff --git a/src/layouts/Home.astro b/src/layouts/Home.astro
index 5d330d0..0ed6024 100644
--- a/src/layouts/Home.astro
+++ b/src/layouts/Home.astro
@@ -2,7 +2,6 @@
import BaseHead from "../components/BaseHead.astro"
import Header from "../components/Header.astro"
import Footer from "../components/Footer.astro"
-import FootPrint from "../components/svg/FootPrint"
interface Props {
title: string
diff --git a/src/pages/index.astro b/src/pages/index.astro
index c9e5ff2..24a266b 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,8 +1,9 @@
---
import Home from "../layouts/Home.astro"
-import CircleIcon from "../components/svg/Circle"
import MiniMapSvg from "../components/svg/MiniMaps"
import FootPrint from "../components/svg/FootPrint"
+import { GlobeIcon, Pencil1Icon, TargetIcon } from "@radix-ui/react-icons"
+import ProjectAim from "../components/ProjectAim.astro"
---
-
-
+
+
The Mexican Migration Project (MMP) was created in 1982 by an interdisciplinary team of
researchers to further our understanding of the complex process of Mexican migration to the
@@ -36,24 +37,24 @@ import FootPrint from "../components/svg/FootPrint"
behavior of Mexican migrants.
-
+
Project Aims
-
-
-
-
Gather and maintain high quality data on Mexican migration to the US
-
-
-
-
Make data public and confidential
-
-
-
-
Investigate the evolving transnational dynamics of migration
-
+
+
+
+ Gather and maintain high quality data on Mexican migration to the US
+
+
+
+ Make data public and confidential
+
+
+
+ Investigate the evolving transnational dynamics of migration
+
-
+
Where are we located?
The MMP has offices, in Mexico, at the Departamento de Investigacion sobre Movimientos
diff --git a/src/styles/global.css b/src/styles/global.css
index a93dee5..ccffcb0 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -24,7 +24,6 @@
body > * {
grid-column: 2;
- @apply max-w-[1000px];
@apply px-3;
}