diff --git a/src/components/blocks/WhyBeAPartOfAgrobot.astro b/src/components/blocks/WhyBeAPartOfAgrobot.astro new file mode 100644 index 0000000..896cc78 --- /dev/null +++ b/src/components/blocks/WhyBeAPartOfAgrobot.astro @@ -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; +--- + +
+

+ {title} +

+

+ {description} +

+
diff --git a/src/pages/recruitment.astro b/src/pages/recruitment.astro index 15c5424..5ac314c 100644 --- a/src/pages/recruitment.astro +++ b/src/pages/recruitment.astro @@ -2,6 +2,7 @@ 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. @@ -9,5 +10,6 @@ import RecruitmentHero from "../components/content/RecruitmentHero.astro"; +