Skip to content

Commit 8252287

Browse files
committed
feat: update to latest
1 parent cf5f70d commit 8252287

File tree

13 files changed

+112
-107
lines changed

13 files changed

+112
-107
lines changed

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

next.config.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
const withNextra = require("nextra")({
1+
import nextra from "nextra";
2+
3+
const withNextra = nextra({
24
theme: "nextra-theme-docs",
35
themeConfig: "./theme.config.js",
46
});
57

6-
module.exports = {
7-
...withNextra(),
8+
export default withNextra({
89
images: {
910
unoptimized: true,
1011
},
11-
};
12+
});

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
"url": "https://github.com/erc7579/erc7579.github.io/issues"
1818
},
1919
"homepage": "https://github.com/erc7579/erc7579.github.io#readme",
20+
"type": "module",
2021
"dependencies": {
21-
"next": "^13.5.7",
22+
"next": "^14.2.14",
2223
"nextra": "latest",
2324
"nextra-theme-docs": "latest",
2425
"react": "^18.3.1",
File renamed without changes.

pages/_meta.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const meta = {
2+
index: "Introduction",
3+
accounts: "Accounts",
4+
modules: "Modules",
5+
tooling: "Tooling",
6+
"security-perks": "Security Perks",
7+
resources: "Resources ",
8+
extensions: "Extensions",
9+
};
10+
11+
export default meta;

pages/_meta.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

pages/extensions/_meta.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const meta = {
2+
erc7484: "ERC-7484",
3+
};
4+
5+
export default meta;

pages/extensions/_meta.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

pages/index.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Cards, Card } from "nextra/components";
1+
import { Cards } from "nextra/components";
22
import Image from "next/image";
33

44
# Introduction
@@ -49,7 +49,7 @@ There are several ways to contribute to the standard:
4949
## Supporters
5050

5151
<Cards>
52-
<Card
52+
<Cards.Card
5353
title="Biconomy"
5454
href="https://biconomy.io/"
5555
icon={
@@ -62,7 +62,7 @@ There are several ways to contribute to the standard:
6262
/>
6363
}
6464
/>
65-
<Card
65+
<Cards.Card
6666
title="ZeroDev"
6767
href="https://zerodev.app/"
6868
icon={
@@ -75,7 +75,7 @@ There are several ways to contribute to the standard:
7575
/>
7676
}
7777
/>
78-
<Card
78+
<Cards.Card
7979
title="Rhinestone"
8080
href="https://www.rhinestone.wtf/"
8181
icon={
@@ -88,7 +88,7 @@ There are several ways to contribute to the standard:
8888
/>
8989
}
9090
/>
91-
<Card
91+
<Cards.Card
9292
title="OKX"
9393
href="https://www.okx.com/"
9494
icon={
@@ -101,7 +101,7 @@ There are several ways to contribute to the standard:
101101
/>
102102
}
103103
/>
104-
<Card
104+
<Cards.Card
105105
title="Etherspot"
106106
href="https://etherspot.io"
107107
icon={
@@ -114,7 +114,7 @@ There are several ways to contribute to the standard:
114114
/>
115115
}
116116
/>
117-
<Card
117+
<Cards.Card
118118
title="Safe"
119119
href="https://safe.global/"
120120
icon={
@@ -127,7 +127,7 @@ There are several ways to contribute to the standard:
127127
/>
128128
}
129129
/>
130-
<Card
130+
<Cards.Card
131131
title="Pimlico"
132132
href="https://www.pimlico.io/"
133133
icon={
@@ -140,7 +140,7 @@ There are several ways to contribute to the standard:
140140
/>
141141
}
142142
/>
143-
<Card
143+
<Cards.Card
144144
title="WalletConnect"
145145
href="https://walletconnect.com/"
146146
icon={
@@ -153,7 +153,7 @@ There are several ways to contribute to the standard:
153153
/>
154154
}
155155
/>
156-
<Card
156+
<Cards.Card
157157
title="zkEmail"
158158
href="https://prove.email/"
159159
icon={

pages/resources/_meta.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const meta = {
2+
terms: "Terminology",
3+
writing: "Writings",
4+
talks: "Talks",
5+
};
6+
7+
export default meta;

0 commit comments

Comments
 (0)