Skip to content
Closed
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
39 changes: 39 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "Team 401 Website",
"image": "mcr.microsoft.com/devcontainers/typescript-node:22-bookworm",

"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},

"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss",
"unifiedjs.vscode-mdx",
"streetsidesoftware.code-spell-checker"
],
"settings": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
}
}
},

"forwardPorts": [3000],
"portsAttributes": {
"3000": {
"label": "Next.js dev server",
"onAutoForward": "openPreview"
}
},

"postCreateCommand": "npm ci",
"postStartCommand": "echo 'Run: npm run dev'",

"remoteUser": "node"
}
2 changes: 1 addition & 1 deletion src/app/coalition/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const headerButtons = [

<ContentPage>
<HeaderCard title="Rural Virginia Robotics Coalition" buttons={headerButtons}>
Rural Virginia faces disproportionate access and funding issues for
The Amazing Rural Virginia faces disproportionate access and funding issues for
participation in *FIRST* and STEM education. The purpose of the RVRC
is to unite FRC teams from disadvantaged areas in Virginia to pool
resources and accomplish goals beyond the capabilities of any one
Expand Down