Skip to content

Commit 05f1eb1

Browse files
authored
Merge branch 'dev' into fix-layer2-toid-scroll
2 parents 0fab9ae + 09a44a2 commit 05f1eb1

File tree

745 files changed

+82022
-34793
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

745 files changed

+82022
-34793
lines changed

.storybook/manager.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import { addons } from "@storybook/addons"
22
import theme from "./theme"
3+
import favicon from "../src/assets/favicon.png"
34

45
addons.setConfig({
56
theme,
67
})
8+
9+
const link = document.createElement("link")
10+
link.setAttribute("rel", "shortcut icon")
11+
link.setAttribute("href", favicon)
12+
document.head.appendChild(link)

docs/deploy-and-review-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This documentation outlines our current processes for how we deploy the latest c
44

55
## Deploy process
66

7-
Anything merged into the `dev` branch of [ethereum.org](http://ethereum.org) will go live on ethereum.org at the next release. Currently, we deploy the latest changes to [ethereum.org](http://ethereum.org) twice per week (Monday and Thursday). When deploying, we merge the `dev` branch into the `master` branch. The `master` branch is the latest live version of [ethereum.org](https://ethereum.org).
7+
Anything merged into the `dev` branch of [ethereum.org](http://ethereum.org) will go live on ethereum.org at the next release. Currently, we deploy the latest changes to [ethereum.org](http://ethereum.org) twice per week (Tuesday and Thursday). When deploying, we merge the `dev` branch into the `master` branch. The `master` branch is the latest live version of [ethereum.org](https://ethereum.org).
88

99
Occasionally, we’ll also do a patch deploy to fix an urgent or widespread issue.
1010

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereum-org-website",
3-
"version": "7.10.0",
3+
"version": "7.11.2",
44
"description": "Website of ethereum.org",
55
"main": "index.js",
66
"repository": "git@github.com:ethereum/ethereum-org-website.git",
@@ -43,7 +43,7 @@
4343
"gatsby-plugin-react-i18next": "^3.0.1",
4444
"gatsby-plugin-react-svg": "^3.3.0",
4545
"gatsby-plugin-robots-txt": "^1.8.0",
46-
"gatsby-plugin-sharp": "^5.4.0",
46+
"gatsby-plugin-sharp": "^5.8.1",
4747
"gatsby-plugin-sitemap": "^6.4.0",
4848
"gatsby-remark-autolink-headers": "^5.21.0",
4949
"gatsby-remark-copy-linked-files": "^5.21.0",
@@ -85,14 +85,14 @@
8585
"@chakra-ui/cli": "^2.3.0",
8686
"@chakra-ui/storybook-addon": "^4.0.12",
8787
"@netlify/functions": "^1.2.0",
88-
"@storybook/addon-a11y": "^7.0.0-beta.51",
89-
"@storybook/addon-actions": "^7.0.0-beta.51",
90-
"@storybook/addon-essentials": "^7.0.0-beta.51",
91-
"@storybook/addon-interactions": "^7.0.0-beta.51",
92-
"@storybook/addon-links": "^7.0.0-beta.51",
93-
"@storybook/react": "^7.0.0-beta.51",
94-
"@storybook/react-webpack5": "^7.0.0-beta.51",
95-
"@storybook/testing-library": "^0.0.14-next.1",
88+
"@storybook/addon-a11y": "^7.0.6",
89+
"@storybook/addon-actions": "^7.0.6",
90+
"@storybook/addon-essentials": "^7.0.6",
91+
"@storybook/addon-interactions": "^7.0.6",
92+
"@storybook/addon-links": "^7.0.6",
93+
"@storybook/react": "^7.0.6",
94+
"@storybook/react-webpack5": "^7.0.6",
95+
"@storybook/testing-library": "^0.1.0",
9696
"@types/browser-lang": "^0.1.0",
9797
"@types/github-slugger": "^1.3.0",
9898
"@types/luxon": "^2.3.2",
@@ -112,7 +112,7 @@
112112
"prettier": "^2.2.1",
113113
"pretty-quick": "^3.1.0",
114114
"rimraf": "^4.1.1",
115-
"storybook": "^7.0.0-beta.51",
115+
"storybook": "^7.0.6",
116116
"ts-node": "^10.9.1",
117117
"typescript": "^4.6.3",
118118
"walkdir": "^0.4.1"

redirects.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -287,14 +287,6 @@
287287
"fromPath": "/*/eth2/deposit-contract/",
288288
"toPath": "/:splat/staking/deposit-contract/"
289289
},
290-
{
291-
"fromPath": "/*/eth2/get-involved/medalla-data-challenge",
292-
"toPath": "/:splat/community/grants/medalla-data-challenge/"
293-
},
294-
{
295-
"fromPath": "/*/eth2/get-involved/staking-community-grants",
296-
"toPath": "/:splat/community/grants/staking-community-grants/"
297-
},
298290
{
299291
"fromPath": "/*/eth2",
300292
"toPath": "/:splat/upgrades/"
@@ -342,5 +334,9 @@
342334
{
343335
"fromPath": "/*/staking/withdraws",
344336
"toPath": "/:splat/staking/withdrawals/"
337+
},
338+
{
339+
"fromPath": "/*/writing-cohort",
340+
"toPath": "https://ethereumwriterscohort.carrd.co/"
345341
}
346342
]
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import colors from "./colors"
22
import shadows from "./shadows"
33
import typography from "./typography"
4+
import sizes from "./sizes"
45

56
// Check the following link to see all the possible options:
67
// https://github.com/chakra-ui/chakra-ui/blob/main/packages/theme/src/foundations/index.ts
78
const foundations = {
89
colors,
910
shadows,
1011
...typography,
12+
sizes,
1113
}
1214

1315
export default foundations

src/@chakra-ui/gatsby-plugin/foundations/shadows.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const shadows = {
1616
dark: "0 1px 1px hsla(0,0%,100%,.1)",
1717
},
1818
tableItemBoxHover: "0 0 1px var(--eth-colors-primary)",
19+
gridYellowBoxShadow: "8px 8px 0px 0px var(--eth-colors-gridYellow)",
20+
gridBlueBowShadow: "8px 8px 0px 0px var(--eth-colors-gridBlue)",
1921

2022
// * Part of new DS
2123
// TODO: From current theme. Rename to 'buttonHover'
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const container = {
2+
"2xl": "1440px",
3+
}
4+
5+
const sizes = {
6+
container,
7+
}
8+
9+
export default sizes
-3.66 KB
Loading
Loading

src/assets/wallets/taho.png

30.1 KB
Loading

0 commit comments

Comments
 (0)