This repository was archived by the owner on Dec 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +169
-1299
lines changed Expand file tree Collapse file tree 7 files changed +169
-1299
lines changed Original file line number Diff line number Diff line change 1
1
/// <reference types="next" />
2
- /// <reference types="next/types/global" />
3
2
/// <reference types="next/image-types/global" />
4
3
5
4
// NOTE: This file should not be edited
Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ const { i18n } = require('./next-i18next.config');
3
3
4
4
module . exports = withPlausibleProxy ( ) ( {
5
5
i18n,
6
+ swcMinify : true ,
6
7
} ) ;
Original file line number Diff line number Diff line change 15
15
"@testing-library/user-event" : " ^12.1.10" ,
16
16
"framer-motion" : " ^4" ,
17
17
"jest" : " ^27.2.0" ,
18
- "next" : " ^11.1.2 " ,
18
+ "next" : " 12 " ,
19
19
"next-i18next" : " ^8.8.0" ,
20
- "next-plausible" : " ^3.1.4 " ,
20
+ "next-plausible" : " ^3.1.9 " ,
21
21
"react" : " ^17.0.2" ,
22
22
"react-confetti" : " ^6.0.1" ,
23
23
"react-dom" : " ^17.0.2" ,
24
24
"react-fast-marquee" : " ^1.3.1" ,
25
25
"react-icons" : " ^4.3.1" ,
26
- "web-vitals" : " ^1.0.1 "
26
+ "web-vitals" : " 2.1.4 "
27
27
},
28
28
"scripts" : {
29
29
"start" : " next start" ,
Original file line number Diff line number Diff line change 41
41
},
42
42
"membership" : {
43
43
"title" : " How do I join?" ,
44
- "body" : " Membership is temporarily closed but will be open again soon. Follow us on Twitter for updates! "
44
+ "body" : " To gain access to Developer DAO you can acquire one of our genesis NFTs on the open market or from another DAO member. "
45
45
},
46
46
"links" : {
47
47
"title" : " Useful links" ,
48
48
"wiki" : " Wiki" ,
49
49
"forum" : " Forum" ,
50
- "snapshot" : " Snapshot"
50
+ "snapshot" : " Snapshot" ,
51
+ "blog" : " Blog"
51
52
},
52
53
"socialLinkLabel" : " Opens the Developer DAO {{platform}} in the current tab"
53
54
}
Original file line number Diff line number Diff line change 1
1
import { Divider , useColorMode , VStack } from '@chakra-ui/react' ;
2
2
import { serverSideTranslations } from 'next-i18next/serverSideTranslations' ;
3
+
3
4
import Footer from '../Components/Footer' ;
4
5
import IntroComponent from '../Components/Intro' ;
5
6
import Partners from '../Components/Partners' ;
@@ -9,6 +10,7 @@ export default function IndexPage() {
9
10
const { colorMode } = useColorMode ( ) ;
10
11
11
12
return (
13
+
12
14
< VStack w = "full" justify = "center" spacing = { 4 } >
13
15
< IntroComponent />
14
16
< Values />
Original file line number Diff line number Diff line change 12
12
"moduleResolution" : " node" ,
13
13
"resolveJsonModule" : true ,
14
14
"isolatedModules" : true ,
15
- "jsx" : " preserve"
15
+ "jsx" : " preserve" ,
16
+ "incremental" : true
16
17
},
17
18
"include" : [
18
19
" next-env.d.ts" ,
You can’t perform that action at this time.
0 commit comments