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/hero-section-temp.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/components/blocks/AgrobotHero.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- Main Container for hero section of Agrobot Page -->
<div class="flex flex-row items-center justify-between gap-16">
<!-- Container for Hero Section Image -->
<div class="max-w-[551px]">
<img
src="/hero-section-temp.jpg"
alt="Agrbot Hero Section"
class="h-auto w-full rounded-[3rem] object-cover"
/>
</div>

<!-- Container for Hero section text -->
<div class="flex flex-col">
<h1 class="mb-5 text-5xl">
Technology that powers the future of agriculture
</h1>

<p class="max-w-2xl text-2xl">Modern tools for modern farms</p>
</div>
</div>
18 changes: 18 additions & 0 deletions src/pages/projects.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
import Layout from "../layouts/Layout.astro";
import AgrobotHero from "../components/blocks/AgrobotHero.astro";
---

<Layout>
<main
class="flex min-h-screen w-full flex-col items-center gap-24 px-6 py-20"
>
<!-- Hero -->
<div class="w-full max-w-7xl">
<AgrobotHero />
</div>

<!-- Body of the page -->
<div class="flex w-full max-w-4xl flex-col gap-24"></div>
</main>
</Layout>