├── .gitignore ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── reset.css └── robots.txt └── src ├── App.css ├── App.js ├── assets ├── Image.png ├── bids1.png ├── bids2.png ├── bids3.png ├── bids4.png ├── bids5.png ├── bids6.png ├── bids7.png ├── bids8.png ├── coin.png ├── item1.png ├── logo.png ├── profile.jpg ├── profile_banner.png ├── seller1.jpg ├── seller2.png ├── seller3.png ├── seller4.png ├── seller5.png ├── seller6.jpg ├── ss1.png ├── ss2.png ├── ss3.png ├── ss4.png └── verify.png ├── components ├── bids │ ├── Bids.jsx │ └── bids.css ├── footer │ ├── Footer.jsx │ └── footer.css ├── header │ ├── Header.jsx │ └── header.css ├── index.js └── navbar │ ├── Navbar.jsx │ └── navbar.css ├── index.css ├── index.js └── pages ├── create ├── Create.jsx └── create.css ├── home ├── Home.jsx └── home.css ├── index.js ├── item ├── Item.jsx └── item.css ├── login ├── Login.jsx └── login.css ├── profile ├── Profile.jsx └── profile.css └── register ├── Register.jsx └── register.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/public/reset.css -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/Image.png -------------------------------------------------------------------------------- /src/assets/bids1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids1.png -------------------------------------------------------------------------------- /src/assets/bids2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids2.png -------------------------------------------------------------------------------- /src/assets/bids3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids3.png -------------------------------------------------------------------------------- /src/assets/bids4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids4.png -------------------------------------------------------------------------------- /src/assets/bids5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids5.png -------------------------------------------------------------------------------- /src/assets/bids6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids6.png -------------------------------------------------------------------------------- /src/assets/bids7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids7.png -------------------------------------------------------------------------------- /src/assets/bids8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/bids8.png -------------------------------------------------------------------------------- /src/assets/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/coin.png -------------------------------------------------------------------------------- /src/assets/item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/item1.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/profile.jpg -------------------------------------------------------------------------------- /src/assets/profile_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/profile_banner.png -------------------------------------------------------------------------------- /src/assets/seller1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/seller1.jpg -------------------------------------------------------------------------------- /src/assets/seller2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/seller2.png -------------------------------------------------------------------------------- /src/assets/seller3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/seller3.png -------------------------------------------------------------------------------- /src/assets/seller4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/seller4.png -------------------------------------------------------------------------------- /src/assets/seller5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/seller5.png -------------------------------------------------------------------------------- /src/assets/seller6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/seller6.jpg -------------------------------------------------------------------------------- /src/assets/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/ss1.png -------------------------------------------------------------------------------- /src/assets/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/ss2.png -------------------------------------------------------------------------------- /src/assets/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/ss3.png -------------------------------------------------------------------------------- /src/assets/ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/ss4.png -------------------------------------------------------------------------------- /src/assets/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/assets/verify.png -------------------------------------------------------------------------------- /src/components/bids/Bids.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/bids/Bids.jsx -------------------------------------------------------------------------------- /src/components/bids/bids.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/bids/bids.css -------------------------------------------------------------------------------- /src/components/footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/footer/footer.css -------------------------------------------------------------------------------- /src/components/header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/header/Header.jsx -------------------------------------------------------------------------------- /src/components/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/header/header.css -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/components/navbar/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/components/navbar/navbar.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/create/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/create/Create.jsx -------------------------------------------------------------------------------- /src/pages/create/create.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/create/create.css -------------------------------------------------------------------------------- /src/pages/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/home/Home.jsx -------------------------------------------------------------------------------- /src/pages/home/home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/item/Item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/item/Item.jsx -------------------------------------------------------------------------------- /src/pages/item/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/item/item.css -------------------------------------------------------------------------------- /src/pages/login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/login/Login.jsx -------------------------------------------------------------------------------- /src/pages/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/login/login.css -------------------------------------------------------------------------------- /src/pages/profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/profile/Profile.jsx -------------------------------------------------------------------------------- /src/pages/profile/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/profile/profile.css -------------------------------------------------------------------------------- /src/pages/register/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/register/Register.jsx -------------------------------------------------------------------------------- /src/pages/register/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasim393/NFT-Marketplace-UI/HEAD/src/pages/register/register.css --------------------------------------------------------------------------------