Skip to content
Merged
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
45 changes: 45 additions & 0 deletions src/components/blocks/LetsGrowSomething.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<div class="contact-section max-w-6xl">
<!-- Text content: heading and description -->
<div class="contact-text mb-10 flex flex-col gap-4">
<!-- Main heading -->
<h1 class="text-5xl">Let's grow something great together</h1>

<!-- Description paragraph -->
<p class="max-w-2xl text-xl">
Have questions about Agrobot or want to collaborate? Reach out to our team
and we would love to connect and share our story.
</p>
</div>

<!-- Form and image container -->
<div class="contact-form-container flex w-full flex-row gap-45">
<!-- Form inputs -->
<div class="contact-form flex flex-1 flex-col gap-6">
<!-- Name input field -->
<input
type="text"
name="name"
placeholder="Your Name"
class="rounded-2xl bg-[#d9d9d9] px-8 py-4 outline-none focus:ring-2 focus:ring-gray-300"
/>
<!-- Email input field -->
<input
type="email"
name="email"
placeholder="Your Email"
class="rounded-2xl bg-[#d9d9d9] px-8 py-4 outline-none focus:ring-2 focus:ring-gray-300"
/>
<!-- Message text area -->
<textarea
name="message"
placeholder="Your Message"
class="h-[272px] resize-none rounded-2xl bg-[#d9d9d9] px-8 py-6 outline-none focus:ring-2 focus:ring-gray-300"
></textarea>
</div>

<!-- Image -->
<div class="contact-image size-[450px] shrink-0 rounded-[3rem] bg-gray-200">
<!-- Let's grow something great together picture -->
</div>
</div>
</div>