-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
67 lines (62 loc) · 1.87 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import React, {Fragment, useEffect, useState} from 'react';
//@ts-ignore
import SEO from '../src/components/common/SEO';
// @ts-ignore
// import NFTCARD from '../src/components/ui/NFTCard';
// import DABU from '../dabu';
// import H from '../src/components/common/H';
// import {runTime} from '../dabu/helpers';
import Web3 from 'web3';
// import TwitchEmbed from '@/src/components/blocks/TwitchEmbed';
// import Chatbot from '@/src/components/ui/Chatbot';
import MoiLinkTree from '@/src/components/ui/MoiLinkTree';
var BN: any = Web3.utils.hexToNumberString;
export default function Index(): JSX.Element {
return (
<>
<style jsx global>
{`
.h-lg-fnt {
font-size: 3.5rem;
}
.strokeme {
color: #000;
text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
1px 1px 0 #fff;
}
.wrapper {
height: 100%;
width: 100%;
margin: 0 auto;
}
.wrapper > div {
height: 100%;
width: 100%;
padding-top: 1rem;
}
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {
}
// Large devices (desktops, 992px and up)
@media (min-width: 992px) {
}
// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}
// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) {
}
`}
</style>
<SEO
title={`Home | Moka's Lookout`}
description="Moika's Lookout is a WEB3 Community."
twitter='moikaslookout'
keywords='gaming, nfts, web3'
/>
<div className='wrapper d-flex flex-column justify-content-center align-items-center'>
<MoiLinkTree/>
</div>
</>
);
}