Skip to content

Instantly share code, notes, and snippets.

View justiniyke29's full-sized avatar
🎯
Always learning something new

Ikechukwu Anyanwu justiniyke29

🎯
Always learning something new
View GitHub Profile
@timothycarambat
timothycarambat / index.html
Created September 18, 2021 01:22
Easy Web3 Meta Mask Login - static HTML and Vanilla JS
<html>
<head>
<title>Web3 Metamask Login</title>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="flex w-screen h-screen justify-center items-center">
<div class="flex-col space-y-2 justify-center items-center">
<button id='loginButton' onclick="" class="mx-auto rounded-md p-2 bg-purple-500 text-white">
@adrianhajdin
adrianhajdin / Assets
Created April 1, 2022 11:59
React Native - NFT Marketplace Showcase
https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/adrianhajdin/nft-marketplace-showcase/tree/main/src/assets
@adrianhajdin
adrianhajdin / Assets
Created April 1, 2022 12:00
React Native - NFT Marketplace
https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/adrianhajdin/react-native-nft-marketplace/tree/main/assets
@adrianhajdin
adrianhajdin / StateContext.js
Last active July 11, 2024 14:11
Build and Deploy a Modern Full Stack ECommerce Application with Stripe
import React, { createContext, useContext, useState, useEffect } from 'react';
import { toast } from 'react-hot-toast';
const Context = createContext();
export const StateContext = ({ children }) => {
const getLocalStorage = (name) => {
if (typeof window !== 'undefined') {
const storage = localStorage.getItem(name);