├── .eslintrc.json ├── .gitignore ├── .npmrc ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── [id].tsx ├── _app.tsx ├── createToken.tsx ├── index.tsx └── listItems.tsx ├── postcss.config.js ├── src ├── components │ ├── Footer.tsx │ └── Navbar.tsx ├── layouts │ └── PageLayout.tsx ├── nftAbi.json └── nftMktAbi.json ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies = false 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/package.json -------------------------------------------------------------------------------- /pages/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/pages/[id].tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/createToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/pages/createToken.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/listItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/pages/listItems.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/layouts/PageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/src/layouts/PageLayout.tsx -------------------------------------------------------------------------------- /src/nftAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/src/nftAbi.json -------------------------------------------------------------------------------- /src/nftMktAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/src/nftMktAbi.json -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faytey/nftDapp/HEAD/tsconfig.json --------------------------------------------------------------------------------