Created MetaMask detection

This commit is contained in:
sid
2024-10-25 16:59:20 +01:00
parent ec45492e58
commit 6983eb3d18
3 changed files with 54 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
import Header from '../components/custom/header'; import Header from '../components/custom/header';
import Footer from '../components/custom/footer'; import Footer from '../components/custom/footer';
import Test from '../components/scripts/Test';
import MetaMask from '../components/scripts/MetaMask';
export default function Home() { export default function Home() {
return ( return (
@@ -21,6 +23,12 @@ export default function Home() {
<li>Event 3 - Date</li> <li>Event 3 - Date</li>
</ul> </ul>
</section> </section>
<section className="mb-8">
<Test />
</section>
<section className="mb-8">
<MetaMask />
</section>
<Footer /> <Footer />
</main> </main>
</div> </div>

View File

@@ -0,0 +1,30 @@
'use client';
import React, { useEffect } from 'react';
const MetaMask = () => {
const isMetaMaskInstalled = () =>
typeof (window as { ethereum?: unknown }).ethereum !== 'undefined';
useEffect(() => {
console.log('Print something');
}, []);
// TODO FIX! This is not working :(
const metaMaskInstalled = isMetaMaskInstalled();
//console.log(metaMaskInstalled);
return (
<div className="text-center p-4">
{metaMaskInstalled ? (
<button className="bg-blue-500 text-white px-4 py-2 rounded">
Connect Wallet
</button>
) : (
<p>MetaMask not detected</p>
)}
</div>
);
};
export default MetaMask;

View File

@@ -0,0 +1,16 @@
'use client';
import React, { useEffect } from 'react';
const Test = () => {
useEffect(() => {
console.log('Print some shit');
}, []);
return (
<div>
<p>Hellao!</p>
</div>
);
};
export default Test;