This repository was archived by the owner on Mar 9, 2021. It is now read-only.
File tree 4 files changed +32
-10
lines changed
4 files changed +32
-10
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"env" : {
3
3
"development" : {
4
- "presets" : " next/babel"
4
+ "presets" : [ " next/babel" ]
5
5
},
6
6
"production" : {
7
- "presets" : " next/babel"
7
+ "presets" : [ " next/babel" ]
8
8
},
9
9
"test" : {
10
10
"presets" : [[" env" , { "modules" : " commonjs" }], " next/babel" ]
Original file line number Diff line number Diff line change @@ -48,13 +48,12 @@ class NavBar extends React.Component {
48
48
external : false ,
49
49
} ,
50
50
{
51
- title : 'Blog' ,
52
- path : 'https://coderplex.org/blog' ,
53
- external : true ,
51
+ title : 'Join' ,
52
+ path : '/join' ,
54
53
} ,
55
54
{
56
- title : 'Join ' ,
57
- path : 'https://coderplex.org/join ' ,
55
+ title : 'Blog ' ,
56
+ path : 'https://coderplex.org/blog ' ,
58
57
external : true ,
59
58
} ,
60
59
] ,
Original file line number Diff line number Diff line change 21
21
"description" : " We host frequent online and offline events, from sessions to competitions" ,
22
22
"image" : " "
23
23
},
24
- "login " : {
25
- "title" : " Login Or Register | Coderplex" ,
26
- "description" : " Join our community" ,
24
+ "join " : {
25
+ "title" : " Join the Coderplex Community " ,
26
+ "description" : " Join the biggest and most active developer community in Hyderabad! " ,
27
27
"image" : " "
28
28
}
29
29
}
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import Head from 'next/head' ;
3
+
4
+ import Layout from '../components/common/layout' ;
5
+
6
+ export default ( ) => {
7
+ return (
8
+ < Layout >
9
+ < Head >
10
+ < script src = "https://static.airtable.com/js/embed/embed_snippet_v1.js" />
11
+ </ Head >
12
+ < iframe
13
+ className = "airtable-embed airtable-dynamic-height"
14
+ src = "https://airtable.com/embed/shrY3VfShFqerCJmX?backgroundColor=green"
15
+ frameBorder = "0"
16
+ onmousewheel = ""
17
+ width = "100%"
18
+ height = "1881"
19
+ style = { { background : `transparent` , border : `1px solid #ccc` } }
20
+ />
21
+ </ Layout >
22
+ ) ;
23
+ } ;
You can’t perform that action at this time.
0 commit comments