-
Notifications
You must be signed in to change notification settings - Fork 0
/
LandVault.jsx
34 lines (25 loc) · 958 Bytes
/
LandVault.jsx
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
// src/LandVault.jsx
import React from 'react';
import './LandVault.css';
const LandVault = () => {
return (
<div className="land-vault">
<header className="header">
<h1>Land Vault</h1>
</header>
<div className='description-box'>
<p>Welcome to Land Vault, This is the Dapp where you can automatically tranfer the crypto asset at particular given time</p>
<button onClick={() => window.location.href = 'homepage.jsx'} className="button">Try now</button>
</div>
{/* <div className="description-box">
<div class="pic">
<img src="src/assets/GQ Crypto FullPage Web.webp" alt="height" border="0" />
</div>
<p>Welcome to Land Vault, This is the Dapp where you can automatically tranfer the crypto asset at particular given time </p>
<br />
<button>Get Started</button>
</div> */}
</div>
);
};
export default LandVault;