diff --git a/src/components/blocks/HowToApply.astro b/src/components/blocks/HowToApply.astro
new file mode 100644
index 0000000..276b1e0
--- /dev/null
+++ b/src/components/blocks/HowToApply.astro
@@ -0,0 +1,99 @@
+---
+const steps = [
+ {
+ number: "01",
+ title: "Read the website",
+ description:
+ "Get familiar with our team, projects, and what we are looking for before you apply.",
+ accent: "from-zinc-200 to-zinc-300",
+ badgeClass: "bg-zinc-900 text-white",
+ },
+ {
+ number: "02",
+ title: "Attend the info session",
+ description:
+ "Come meet the team, learn about the recruitment process, and ask any questions you have.",
+ accent: "from-lime-300 to-emerald-300",
+ badgeClass: "bg-lime-400 text-black",
+ featured: true,
+ },
+ {
+ number: "03",
+ title: "Apply on our website",
+ description:
+ "Submit your application through our website once you feel ready.",
+ accent: "from-emerald-300 to-cyan-300",
+ badgeClass: "bg-emerald-400 text-black",
+ },
+];
+---
+
+
+
+
+
+ Recruitment
+
+
+ How to apply
+
+
+ A simple three-step process to get involved with Agrobot.
+
+
+
+
+ {
+ steps.map((step, index) => (
+
+ {index < steps.length - 1 && (
+
+ )}
+
+
+
+
+
+
+ {step.number}
+
+
+
+ {step.number}
+
+
+
+
+
+ {step.title}
+
+
+ {step.description}
+
+
+
+
+ ))
+ }
+
+
+
diff --git a/src/pages/recruitment.astro b/src/pages/recruitment.astro
index 2d6eea9..664b8d7 100644
--- a/src/pages/recruitment.astro
+++ b/src/pages/recruitment.astro
@@ -3,6 +3,7 @@ import Layout from "../layouts/Layout.astro";
import RecruitmentHero from "../components/content/RecruitmentHero.astro";
import WhyBeAPartOfAgrobot from "../components/blocks/WhyBeAPartOfAgrobot.astro";
import LearnAboutOurSubteams from "../components/blocks/LearnAboutOurSubteams.astro";
+import HowToApply from "../components/blocks/HowToApply.astro";
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
@@ -13,5 +14,6 @@ import LearnAboutOurSubteams from "../components/blocks/LearnAboutOurSubteams.as
+