-
Notifications
You must be signed in to change notification settings - Fork 2
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 #60 from TrustlessComputer/feat/whitelist_munual
update private sale
- Loading branch information
Showing
1 changed file
with
29 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,29 @@ | ||
import PrivateSaleModule from '@/modules/PrivateSale'; | ||
import MainLayout from '@/layouts/MainLayout'; | ||
import s from '../styles.module.scss'; | ||
|
||
// export const metadata: Metadata = { | ||
// title: 'NakaChain - Bitcoin L2 for BRC-20 DeFi', | ||
// description: 'Bitcoin L2 - Only 2 seconds block time - Almost 0 transaction fee- Receive free NakaChain Token', | ||
// twitter: { | ||
// card: 'summary_large_image', | ||
// title: { | ||
// default: 'NakaChain', | ||
// template: '%s - NakaChain', | ||
// }, | ||
// description: 'Bitcoin L2 - Only 2 seconds block time - Almost 0 transaction fee- Receive free NakaChain Token', | ||
// images: [{ url: `https://storage.googleapis.com/nakachain/naka/images/nakaswap_metadata.jpg` }], | ||
// }, | ||
// }; | ||
|
||
const PrivateSale = () => { | ||
return ( | ||
<MainLayout> | ||
<div className={s.container}> | ||
<PrivateSaleModule /> | ||
</div> | ||
</MainLayout> | ||
); | ||
}; | ||
|
||
export default PrivateSale; |