├── .eslintrc ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── components ├── Coin │ ├── Coin.jsx │ └── Coin.module.css ├── Coins │ └── Coins.jsx ├── Layout.jsx └── SearchBar │ ├── SearchBar.jsx │ └── SearchBar.module.css ├── next.config.js ├── package.json ├── pages ├── _app.js ├── coin │ ├── DetailCoin.module.css │ └── [id].js └── index.js └── styles └── globals.css /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.fontFamily": "Apl2741" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/README.md -------------------------------------------------------------------------------- /components/Coin/Coin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/components/Coin/Coin.jsx -------------------------------------------------------------------------------- /components/Coin/Coin.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/components/Coin/Coin.module.css -------------------------------------------------------------------------------- /components/Coins/Coins.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/components/Coins/Coins.jsx -------------------------------------------------------------------------------- /components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/components/Layout.jsx -------------------------------------------------------------------------------- /components/SearchBar/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/components/SearchBar/SearchBar.jsx -------------------------------------------------------------------------------- /components/SearchBar/SearchBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/components/SearchBar/SearchBar.module.css -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: false, 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/coin/DetailCoin.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/pages/coin/DetailCoin.module.css -------------------------------------------------------------------------------- /pages/coin/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/pages/coin/[id].js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/pages/index.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsrafilElahi/next-crypto-currency/HEAD/styles/globals.css --------------------------------------------------------------------------------