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
Binary file added public/our-story.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions src/components/blocks/AboutOurStory.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<div class="flex h-full w-full flex-col gap-6">
<!-- Section Title -->
<h1 class="text-5xl">Our Story</h1>

<!-- Main Content Container (image + text) -->
<div class="flex flex-row gap-8">
<!-- Placeholder for story image (e.g., team photo, robot, lab) -->
<img
src="/our-story.jpg"
alt="Our Story"
class="size-[560px] shrink-0 rounded-[3rem] object-cover"
/>

<!-- Text Content Container -->
<div class="flex flex-col gap-7 text-2xl">
<!-- Paragraph 1: Origin of Agrobot -->
<p>
Agrobot began at UBC when a small group of engineering students noticed
how few opportunities existed to explore agricultural robotics in a
hands-on way. Motivated to bridge that gap, they created a space where
students could design autonomous systems, test sensors, build
prototypes, and apply real robotics concepts to real farming challenges.
</p>

<!-- Paragraph 2: Growth and current impact -->
<p>
What started as weekly meetings in a small lab has grown into a
multidisciplinary team developing functional field robots, experimenting
with hydroponic systems, and collaborating with students from
mechanical, electrical, computer engineering, and science disciplines.
Today, Agrobot continues to push forward student-led innovation in
sustainable agriculture.
</p>
</div>
</div>
</div>
12 changes: 12 additions & 0 deletions src/pages/about.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
import Layout from "../layouts/Layout.astro";
import AboutOurStory from "../components/blocks/AboutOurStory.astro";
---

<Layout>
<main class="flex min-h-screen w-full flex-col items-center gap-24 px-6 py-8">
<div class="mb-10 w-full max-w-7xl">
<AboutOurStory />
</div>
</main>
</Layout>
Loading