Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/components/blocks/WhyBeAPartOfAgrobot.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
const {
title = "Why be a part of Agrobot?",
description = "Join UBC Agrobot and become part of a team dedicated to shaping the future of sustainable agriculture, where you can bring the theoretical knowledge you learn in class to life through hands-on, real-world projects. With opportunities across robotics, AI, mechatronics, navigation, electrical systems, hydroponics, automation, and more, you’ll work on innovations that reduce environmental impact, boost productivity, and advance precision farming. As you contribute to these projects, you’ll gain practical experience collaborating with students from a wide range of disciplines. It’s a chance to solve real agricultural challenges, deepen your skills, and help build the future of smarter, more sustainable farming.",
} = Astro.props;
---

<div class="mx-auto bg-white px-4 py-16 text-center sm:px-6 sm:py-24 lg:px-8">
<h2 class="text-3xl tracking-tight">
{title}
</h2>
<p class="mt-4">
{description}
</p>
</div>
2 changes: 2 additions & 0 deletions src/pages/recruitment.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
import Welcome from "../components/Welcome.astro";
import Layout from "../layouts/Layout.astro";
import RecruitmentHero from "../components/content/RecruitmentHero.astro";
import WhyBeAPartOfAgrobot from "../components/blocks/WhyBeAPartOfAgrobot.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.
---

<Layout>
<RecruitmentHero />
<WhyBeAPartOfAgrobot />
<Welcome />
</Layout>