Skip to content

Commit

Permalink
Merge pull request #92 from NetSepio/rushikesh-subscription
Browse files Browse the repository at this point in the history
add: dvpnnft page
  • Loading branch information
Rushikeshnimkar authored Aug 20, 2024
2 parents 4df3ccc + 6eb7284 commit ba6acf9
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pages/dvpnnft.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import React, { useState } from 'react';
import Footer from "../components/Footer";

const BaliDVPNNFTPage = () => {
const [walletAddress, setWalletAddress] = useState('');

const handleWalletAddressChange = (event) => {
setWalletAddress(event.target.value);
};

const handleGoClick = () => {
// Add your logic here to process the wallet address
console.log('Wallet address:', walletAddress);
};

return (
<>
<div className="flex flex-col justify-center items-center h-screen mt-10 bg-black p-4">
<div className="text-center text-white mb-10">
<h2 className="text-2xl ">Mint Your FREE Bali ÐVPN NFT</h2>
<p className='text-2xl'>Secure, Private, Exclusive</p>
</div>

<input
type="text"
placeholder="enter wallet address"
value={walletAddress}
onChange={handleWalletAddressChange}
className="border border-gray-300 px-4 py-2 rounded-md w-3/4 max-w-md mb-10 text-xl text-center"
/>

<button
onClick={handleGoClick}
className="bg-blue-800 hover:bg-blue-900 text-white font-bold py-3 px-6 rounded-full text-xl mb-6 "
>
GO
</button>

<div className="w-full max-w-xs my-10">
<img src="/bali-dvpn-nft.jpeg" alt="Erebrus DVPN" className="rounded-lg" />
</div>
</div>
<Footer/>
</>
);
};

export default BaliDVPNNFTPage;
Binary file added public/bali-dvpn-nft.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ba6acf9

Please sign in to comment.