diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d07fc84..c15e476 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -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" +} diff --git a/src/components/blocks/PeoplePoweringProjects.astro b/src/components/blocks/PeoplePoweringProjects.astro new file mode 100644 index 0000000..f72c934 --- /dev/null +++ b/src/components/blocks/PeoplePoweringProjects.astro @@ -0,0 +1,25 @@ +--- +import PeoplePoweringProjectsCard from "./PeoplePoweringProjectsCard.astro"; +--- + + +
+

The people powering the projects

+ +
+ + + + + +
+
diff --git a/src/components/blocks/PeoplePoweringProjectsCard.astro b/src/components/blocks/PeoplePoweringProjectsCard.astro new file mode 100644 index 0000000..7802448 --- /dev/null +++ b/src/components/blocks/PeoplePoweringProjectsCard.astro @@ -0,0 +1,14 @@ +--- +const { quote, author } = Astro.props; +--- + + +
+

+ {quote} +

+ +

+ {author} +

+