-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add developer and whitepapers pages are empty
- Loading branch information
1 parent
2355bae
commit 967e5cd
Showing
6 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
'use client'; | ||
|
||
import MainLayout from '@/layouts/MainLayout'; | ||
import DevelopersModule from '@/modules/developers'; | ||
|
||
const DevelopersPage = () => { | ||
return ( | ||
<MainLayout | ||
headerProps={{ | ||
color: 'black', | ||
}} | ||
> | ||
<DevelopersModule /> | ||
</MainLayout> | ||
); | ||
}; | ||
|
||
export default DevelopersPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
'use client'; | ||
|
||
import MainLayout from '@/layouts/MainLayout'; | ||
import WhitePapersModule from '@/modules/whitepapers'; | ||
|
||
const WhitePapersPage = () => { | ||
return ( | ||
<MainLayout | ||
headerProps={{ | ||
color: 'black', | ||
}} | ||
> | ||
<WhitePapersModule /> | ||
</MainLayout> | ||
); | ||
}; | ||
|
||
export default WhitePapersPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
'use client'; | ||
|
||
import { Box, Text } from '@chakra-ui/react'; | ||
import s from './styles.module.scss'; | ||
|
||
const DevelopersModule = () => { | ||
return ( | ||
<Box className={s.container}> | ||
<Text | ||
fontSize={['12px', '20px']} | ||
color={'#000'} | ||
lineHeight={'100%'} | ||
fontWeight={500} | ||
> | ||
{'Developers page. Coming soon!'} | ||
</Text> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default DevelopersModule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.container { | ||
display: flex; | ||
flex: 1; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: #F3F1E8; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
'use client'; | ||
|
||
import { Box, Text } from '@chakra-ui/react'; | ||
import s from './styles.module.scss'; | ||
|
||
const WhitePapersModule = () => { | ||
return ( | ||
<Box className={s.container}> | ||
<Text | ||
fontSize={['12px', '20px']} | ||
color={'#000'} | ||
lineHeight={'100%'} | ||
fontWeight={500} | ||
> | ||
{'WhitePapers page. Coming soon!'} | ||
</Text> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default WhitePapersModule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.container { | ||
display: flex; | ||
flex: 1; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: #F3F1E8; | ||
} |