diff --git a/public/Mechatronics.png b/public/Mechatronics.png new file mode 100644 index 0000000..9bd0cda Binary files /dev/null and b/public/Mechatronics.png differ diff --git a/public/applied-ai.png b/public/applied-ai.png new file mode 100644 index 0000000..84f151f Binary files /dev/null and b/public/applied-ai.png differ diff --git a/public/electrical.png b/public/electrical.png new file mode 100644 index 0000000..a6ccc65 Binary files /dev/null and b/public/electrical.png differ diff --git a/src/components/blocks/LearnAboutOurSubteams.astro b/src/components/blocks/LearnAboutOurSubteams.astro new file mode 100644 index 0000000..109d251 --- /dev/null +++ b/src/components/blocks/LearnAboutOurSubteams.astro @@ -0,0 +1,148 @@ +--- +interface Subteam { + id: string; + name: string; + image: string; + description: string; + responsibilities: string[]; +} + +interface TeamGroup { + group: string; + name: string; + subteams: Subteam[]; +} + +const { + teams = [ + { + group: "agrobot-team", + name: "Agrobot Team", + subteams: [ + { + id: "eletrical", + name: "Electrical", + image: "/electrical.png", + description: + "The Electrical Team plays a crucial role in AgroBot’s success by designing, assembling, and integrating its power systems. They create detailed electrical schematics, select high-quality components, and ensure efficient power management throughout the robot. The team rigorously tests and implements quality control measures to guarantee reliable performance in all conditions. Their work ensures that AgroBot’s electrical systems are robust, dependable, and capable of supporting its autonomous operations effectively.", + }, + { + id: "applied-ai", + name: "Applied AI", + image: "/applied-ai.png", + description: + "The Applied AI sub-team pioneers the development of machine learning models and AI to tackle a variety of AgroBot’s tasks, from plant identification to advanced machine vision. The team works on detecting maize and weeds, segmenting grape clusters, and integrating their models into the Robot Operating System (ROS) for real-world application. By exploring the intersection of AI research and emerging Agri-Tech, members continually push the boundaries of agricultural innovation. Their work ensures AgroBot can operate efficiently and accurately across diverse farming environments, making a tangible impact in sustainable agriculture.", + }, + { + id: "Mechatronics", + name: "Mechatronics", + image: "/Mechatronics.png", + description: "", + }, + { + id: "chassis/powerTrain", + name: "Chassis/Power Train", + image: "/chassis-powertrain.jpg", + description: "", + }, + { + id: "navigation", + name: "Navigation", + image: "/navigation.jpg", + description: "", + }, + { + id: "systemArchitecture", + name: "System Architecture", + image: "/system-architecture.jpg", + description: "", + }, + ], + }, + { + group: "agroponics-team", + name: "Agroponics Team", + subteams: [ + { + id: "automation", + name: "Automation", + image: "/automation.jpg", + description: "", + }, + { + id: "plants", + name: "Plants", + image: "/plants.jpg", + description: "", + }, + { + id: "structure", + name: "Structure", + image: "/structure.jpg", + description: "", + }, + ], + }, + { + group: "administration-team", + name: "Administration Team", + subteams: [ + { + id: "web-dev", + name: "Web Dev", + image: "/web-dev.jpg", + description: "", + }, + { + id: "agriculturalResearch", + name: "Agricultural Research", + image: "/agricultural-research.jpg", + description: "", + }, + { + id: "finance", + name: "Finance", + image: "/finance.jpg", + description: "", + }, + { + id: "marketing", + name: "Marketing", + image: "/marketing.jpg", + description: "", + }, + { + id: "outreach", + name: "Outreach", + image: "/outreach.jpg", + description: "", + }, + ], + }, + ], +} = Astro.props as { teams: TeamGroup[] }; +import SubteamCard from "./SubteamCard.astro"; +--- + +