-
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.
Merge pull request #31 from TrustlessComputer/feat/upcoming
feat: upcoming page
- Loading branch information
Showing
12 changed files
with
475 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,16 @@ | ||
import MainLayout from '@/layouts/MainLayout'; | ||
import UpcomingModule from '@/modules/upcoming'; | ||
|
||
const UpcomingPage = () => { | ||
return ( | ||
<MainLayout | ||
headerProps={{ | ||
color: 'black', | ||
}} | ||
> | ||
<UpcomingModule /> | ||
</MainLayout> | ||
); | ||
}; | ||
|
||
export default UpcomingPage; |
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
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,35 @@ | ||
'use client'; | ||
|
||
import { Flex, Text } from '@chakra-ui/react'; | ||
|
||
const Section_1 = () => { | ||
return ( | ||
<Flex | ||
w={'100%'} | ||
flexDir={'column'} | ||
bgColor={'transparent'} | ||
gap={['16px']} | ||
align={'left'} | ||
> | ||
<Text | ||
fontSize={['16px', '40px']} | ||
lineHeight={'48px'} | ||
fontWeight={400} | ||
color={'#000'} | ||
> | ||
Upcoming Bitcoin L2 Launch | ||
</Text> | ||
<Text | ||
fontSize={['14px', '20px']} | ||
lineHeight={'36px'} | ||
fontWeight={400} | ||
color={'#000'} | ||
maxW={'744px'} | ||
> | ||
Be the first to know when new Bitcoin L2 chains launch. | ||
</Text> | ||
</Flex> | ||
); | ||
}; | ||
|
||
export default Section_1; |
Oops, something went wrong.