- Tailwind CSS Docs https://tailwindcss.com/docs/
- Kitwind https://kitwind.io/products/kometa/components
- Meraki UI https://merakiui.com/components/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const assigment = {} | |
const myNumbers = [68, -68,27,94,72,-25,-51,32,10,64,-94,4,34,-86,90,81,20,-56,-91,-50] | |
function sumOfNumbers(arrayOfNumbers) { | |
return arrayOfNumbers.reduce((a,b) => a + b, 0) | |
// return arrayOfNumbers.length | |
} // chalange 1 | |
function countEvenNumbers(arrayOfNumbers = []) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'remixicon/fonts/remixicon.css'; | |
export default function Icon({ icon, className }) { | |
return <i className={`${icon} ${className} cursor-pointer`} />; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
mobile, | |
backend, | |
creator, | |
web, | |
javascript, | |
typescript, | |
html, | |
css, | |
reactjs, |
Github repository: N/A [private]
Link to Live
https://wafani-project.vercel.app/
https://nonfungible-frontend.vercel.app/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use client'; | |
import { useCreateUserMutation } from '@/redux/services/userApi'; | |
import { CHAIN_INFO, SupportedNetWork } from '@/util/chain'; | |
import { createContext, useCallback, useContext, useEffect, useState } from 'react'; | |
import { toast } from 'react-hot-toast'; | |
declare global { | |
interface Window { | |
ethereum?: any; |
https://caiorss.github.io/bookmarklet-maker/
javascript: (() => {
let targetUrl = "http://wa.me/";
https://cdn.rawgit.com/mfd/7c7a915eb31474cc8c6a65066a4c4dc3/raw/f0f2fb94c21dea904812a53e0eb6cf0bc87f3754/GTWalsheimPro.css
<link rel="https://cdn.rawgit.com/mfd/7c7a915eb31474cc8c6a65066a4c4dc3/raw/f0f2fb94c21dea904812a53e0eb6cf0bc87f3754/GTWalsheimPro.css">
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Request } from 'express'; | |
import multer, { FileFilterCallback } from 'multer'; | |
import { AppStatusCode, ErrorResponse } from '../helpers/errorResponse'; | |
type processType = 'image' | 'video'; | |
type maxSizeType = '10MB' | '50MB' | '100MB' | '1GB'; | |
const storage = multer.memoryStorage(); // multer storage path |