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/group-of-people-smiling.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions src/components/landing/PlantFuture.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
// src/components/landing/PlantFuture.astro
---

<section class="w-full bg-white px-6 py-12 md:py-16">
<div class="mx-auto flex max-w-6xl flex-col items-center text-center">
<h2 class="mb-6 text-4xl font-normal tracking-wide text-black md:text-5xl">
Plant your future here
</h2>

<a
href="/recruitment"
class="mb-8 rounded-full border border-gray-300 bg-white px-7 py-3 text-base font-semibold text-black transition hover:bg-gray-100"
>
Join our team
</a>

<div class="w-full overflow-hidden rounded-[2rem] md:rounded-[2.5rem]">
<img
src="/group-of-people-smiling.jpg"
alt="Agrobot team members working together"
class="h-[260px] w-full object-cover md:h-[360px]"
/>
</div>
</div>
</section>
2 changes: 2 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import LandingHero from "../components/content/LandingHero.astro";
import MeetLeads from "../components/content/MeetLeads.astro";
import RootsSection from "../components/landing/RootsSection.astro";
import WhatWeBuild from "../components/landing/WhatWeBuild.astro";
import PlantFutureSection from "../components/landing/PlantFuture.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.
Expand All @@ -15,6 +16,7 @@ import WhatWeBuild from "../components/landing/WhatWeBuild.astro";
<LandingHero />
<RootsSection />
<WhatWeBuild />
<PlantFutureSection />
<MeetLeads />
</main>
</Layout>
Loading