-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.tsx
194 lines (187 loc) · 11.2 KB
/
Project.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import React from 'react'
import { motion } from 'framer-motion'
type Props = {}
export default function Projects({}: Props) {
return (
<motion.div
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
transition={{ duration: 1.5 }}
className='flex relative overflow-hidden flex-col text-left md:flex-row max-w-full h-screen justify-evenly mx-auto items-center z-0'>
<h4 className='absolute top-12 uppercase tracking-[10px] text-pink-500 font-serif text-1xl'>
Active Nodes
</h4>
<div className="relative w-full flex overflow-x-scroll snap-x snap-mandatory z-20 scrollbar scrollbar-track-pink-200 scrollbar-thumb-pink-500">
<div className="cursor-auto w-screen flex-shrink-0 snap-center flex flex-col space-y-5 items-center justify-center p-20 md:p-44 h-screen rounded-full">
<motion.img
initial={{
y: 100,
opacity: 0,
}}
transition={{ duration: 1.2 }}
whileInView={{ opacity: 1, y: 0}}
className="w-32 h-32 rounded-full xl:w-[200px] xl:h-[200px] object-center"
src="./pict/ar.png"
alt="ar"/>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Ar.io</h3>
</div>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Gateway Operator</h3>
</div>
<div className="flex items-center space-x-2 justify-center">
<img className="h-7 w-7" src="./pict/copy.png" alt=""/>
<img className="h-7 w-7" src="./pict/github.png" alt=""/>
<img className="h-7 w-7" src="./pict/ubuntu.png" alt=""/>
<img className="h-7 w-7" src="./pict/docker.png" alt=""/>
<img className="h-7 w-7" src="./pict/vim.png" alt=""/>
<img className="h-7 w-7" src="./pict/typescript.png" alt=""/>
</div>
<div className="space-y-10 px-0 md:px-10">
<h4 className="text-sm font-semibold text-pink-500 text-center">ar.io is a network of decentralized gateways and permanent domains for the Arweave ecosystem 🐘</h4>
</div>
<div className="space-x-5 px-10 cursor-pointer">
<a target="_blank" rel="noreferrer" href="https://network-portal.app/gateways/xFK3NdQ1utoPQ2tXMgNKFn9oZGw0Tl4ihNo7JY5Ldnk">
<span className="md:inline-flex text-sm font-mono text-purple-500"><b>blessingway.xyz</b></span>
</a>
</div>
</div>
<div className="cursor-auto w-screen flex-shrink-0 snap-center flex flex-col space-y-5 items-center justify-center p-20 md:p-44 h-screen rounded-full">
<motion.img
initial={{
y: 100,
opacity: 0,
}}
transition={{ duration: 1.2 }}
whileInView={{ opacity: 1, y: 0}}
className="w-32 h-32 rounded-full xl:w-[200px] xl:h-[200px] object-center"
src="./pict/avail.png"
alt="avail"/>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Avail</h3>
</div>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Validator</h3>
</div>
<div className="flex items-center space-x-2 justify-center">
<img className="h-7 w-7" src="./pict/copy.png" alt=""/>
<img className="h-7 w-7" src="./pict/github.png" alt=""/>
<img className="h-7 w-7" src="./pict/ubuntu.png" alt=""/>
<img className="h-7 w-7" src="./pict/vim.png" alt=""/>
</div>
<div className="space-y-10 px-0 md:px-10">
<h4 className="text-sm font-semibold text-pink-500 text-center">Avail is a modular blockchain with a data availability layer designed to scale blockchain networks</h4>
</div>
<div className="space-x-5 px-10 cursor-pointer">
<a target="_blank" rel="noreferrer" href="https://explorer.avail.so//#/accounts">
<span className="md:inline-flex text-sm font-mono text-purple-500"><b>Portal</b></span>
</a>
</div>
</div>
<div className="cursor-auto w-screen flex-shrink-0 snap-center flex flex-col space-y-5 items-center justify-center p-20 md:p-44 h-screen rounded-full">
<motion.img
initial={{
y: 100,
opacity: 0,
}}
transition={{ duration: 1.2 }}
whileInView={{ opacity: 1, y: 0}}
className="w-32 h-32 rounded-full xl:w-[200px] xl:h-[200px] object-center"
src="./pict/ctc.png"
alt="ctc"/>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Creditcoin</h3>
</div>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Validator</h3>
</div>
<div className="flex items-center space-x-2 justify-center">
<img className="h-7 w-7" src="./pict/copy.png" alt=""/>
<img className="h-7 w-7" src="./pict/github.png" alt=""/>
<img className="h-7 w-7" src="./pict/ubuntu.png" alt=""/>
<img className="h-7 w-7" src="./pict/go.png" alt=""/>
<img className="h-7 w-7" src="./pict/js.png" alt=""/>
<img className="h-7 w-7" src="./pict/typescript.png" alt=""/>
<img className="h-7 w-7" src="./pict/react.png" alt=""/>
<img className="h-7 w-7" src="./pict/metamask.png" alt=""/>
</div>
<div className="space-y-10 px-0 md:px-10">
<h4 className="text-sm font-semibold text-pink-500 text-center">Fastest growing #RWA blockchain with 5M+ loans recorded on-chain for 500k+ real-world customers 🚀</h4>
</div>
<div className="space-x-5 px-10 cursor-pointer">
<a target="_blank" rel="noreferrer" href="https://polkadot.js.org/apps/?rpc=wss://rpc.mainnet.creditcoin.network/ws#/accounts">
<span className="md:inline-flex text-sm font-mono text-purple-500"><b>Portal</b></span>
</a>
</div>
</div>
<div className="cursor-auto w-screen flex-shrink-0 snap-center flex flex-col space-y-5 items-center justify-center p-20 md:p-44 h-screen rounded-full">
<motion.img
initial={{
y: 100,
opacity: 0,
}}
transition={{ duration: 1.2 }}
whileInView={{ opacity: 1, y: 0}}
className="w-32 h-32 rounded-full xl:w-[200px] xl:h-[200px] object-center"
src="./pict/tangle.png"
alt="tangle"/>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Tangle</h3>
</div>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Validator</h3>
</div>
<div className="flex items-center space-x-2 justify-center">
<img className="h-7 w-7" src="./pict/copy.png" alt=""/>
<img className="h-7 w-7" src="./pict/github.png" alt=""/>
<img className="h-7 w-7" src="./pict/ubuntu.png" alt=""/>
<img className="h-7 w-7" src="./pict/vim.png" alt=""/>
</div>
<div className="space-y-10 px-0 md:px-10">
<h4 className="text-sm font-semibold text-pink-500 text-center">Built on Substrate, Tangle Network empowers privacy-enhancing and governance-decentralized applications, incorporating cross-chain functionality, EVM compatibility, advanced governance systems, and ZK applications into a unified ecosystem.</h4>
</div>
<div className="space-x-5 px-10 cursor-pointer">
<a target="_blank" rel="noreferrer" href="https://polkadot.js.org/apps/?rpc=wss://rpc.tangle.tools#/accounts">
<span className="md:inline-flex text-sm font-mono text-purple-500"><b>Portal</b></span>
</a>
</div>
</div>
<div className="cursor-auto w-screen flex-shrink-0 snap-center flex flex-col space-y-5 items-center justify-center p-20 md:p-44 h-screen rounded-full">
<motion.img
initial={{
y: 100,
opacity: 0,
}}
transition={{ duration: 1.2 }}
whileInView={{ opacity: 1, y: 0}}
className="w-32 h-32 rounded-full xl:w-[200px] xl:h-[200px] object-center"
src="./pict/sarco.png"
alt="sarco"/>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Sarcophagus</h3>
</div>
<div className="space-y-10 px-0 md:px-10">
<h3 className="text-lg font-semibold text-pink-500 text-center">Mainnet & Testnet Node Operator</h3>
</div>
<div className="flex items-center space-x-2 justify-center">
<img className="h-7 w-7" src="./pict/copy.png" alt=""/>
<img className="h-7 w-7" src="./pict/github.png" alt=""/>
<img className="h-7 w-7" src="./pict/ubuntu.png" alt=""/>
<img className="h-7 w-7" src="./pict/vim.png" alt=""/>
<img className="h-7 w-7" src="./pict/docker.png" alt=""/>
<img className="h-7 w-7" src="./pict/metamask.png" alt=""/>
</div>
<div className="space-y-10 px-0 md:px-10">
<h4 className="text-sm font-semibold text-pink-500 text-center">A decentralized dead man's switch built on Ethereum and Arweave.</h4>
</div>
<div className="space-x-5 px-10 cursor-pointer">
<a target="_blank" rel="noreferrer" href="https://app.sarcophagus.io/archaeologists">
<span className="md:inline-flex text-sm font-mono text-purple-500"><b>app.sarcophagus.io/archaeologists</b></span>
</a>
</div>
</div>
</div>
<div className='w-full absolute top-[30%] bg-pink-500/30 left-0 h-[300px] skew-y-12 transform-gpu' />
</motion.div>
)
}