Skip to content
Open
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
56 changes: 28 additions & 28 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"name": "Webdev Container",
"remoteUser": "vscode",
"image": "agrobotappliedai/webdev-containers:latest",
"customizations": {
"settings": {
"terminal.integrated.shell.linux": "bash"
},
"vscode": {
"extensions": [
"oxc.oxc-vscode",
"astro-build.astro-vscode",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
}
},
"workspaceFolder": "/home/vscode/workspace",
"workspaceMount": "source=.,target=/home/vscode/workspace,type=bind,consistency=cached",
"updateRemoteUserUID": false,
"mounts": [],
"runArgs": [
"--net=host",
"-it",
"--rm"
],
"postAttachCommand": "bun install --frozen-lockfile"
}
{
"name": "Webdev Container",
"remoteUser": "vscode",
"image": "agrobotappliedai/webdev-containers:latest",
"customizations": {
"settings": {
"terminal.integrated.shell.linux": "bash"
},
"vscode": {
"extensions": [
"oxc.oxc-vscode",
"astro-build.astro-vscode",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
}
},
"workspaceFolder": "/home/vscode/workspace",
"workspaceMount": "source=.,target=/home/vscode/workspace,type=bind,consistency=cached",
"updateRemoteUserUID": false,
"mounts": [],
"runArgs": [
"--net=host",
"-it",
"--rm"
],
"postAttachCommand": "bun install --frozen-lockfile"
}
25 changes: 25 additions & 0 deletions src/components/blocks/PeoplePoweringProjects.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
import PeoplePoweringProjectsCard from "./PeoplePoweringProjectsCard.astro";
---

<!-- Team Testimonials Section -->
<div class="team-testimonials">
<h1 class="team-testimonials-title">The people powering the projects</h1>

<div class="team-testimonials-list">
<PeoplePoweringProjectsCard
quote="I love how every challenge here turns into a learning experience. Seeing the robot actually move for the first time after weeks of testing was surreal."
author="Jordan Lee, Mechanical Subteam"
/>

<PeoplePoweringProjectsCard
quote="Working on the control systems has been an incredible mix of coding, debugging, and watching things come to life. There’s nothing like seeing your code move actual hardware."
author="Priya Nair, Software Subteam"
/>

<PeoplePoweringProjectsCard
quote="I joined to learn about sensors, but I stayed because of the team. We all share this goal of building something that could really help farmers one day."
author="Miguel Santos, Electrical Subteam"
/>
</div>
</div>
14 changes: 14 additions & 0 deletions src/components/blocks/PeoplePoweringProjectsCard.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
const { quote, author } = Astro.props;
---

<!-- Testimonial Card -->
<div class="testimonial-card">
<p class="testimonial-quote">
{quote}
</p>

<p class="testimonial-author">
{author}
</p>
</div>