Skip to content

Commit

Permalink
Add developer and whitepapers pages are empty
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytc13579 committed Jan 3, 2024
1 parent 2355bae commit 967e5cd
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/app/developers/page.tsx
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;
18 changes: 18 additions & 0 deletions src/app/whitepapers/page.tsx
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;
21 changes: 21 additions & 0 deletions src/modules/developers/index.tsx
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;
8 changes: 8 additions & 0 deletions src/modules/developers/styles.module.scss
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;
}
21 changes: 21 additions & 0 deletions src/modules/whitepapers/index.tsx
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;
8 changes: 8 additions & 0 deletions src/modules/whitepapers/styles.module.scss
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;
}

0 comments on commit 967e5cd

Please sign in to comment.