https://github.com/crossmint/wallet-ui
Project showcasing UI components for rendering an NFT wallet, built with TailwindCss
https://github.com/crossmint/wallet-ui
Last synced: 4 months ago
JSON representation
Project showcasing UI components for rendering an NFT wallet, built with TailwindCss
- Host: GitHub
- URL: https://github.com/crossmint/wallet-ui
- Owner: Crossmint
- License: mit
- Created: 2023-01-18T07:48:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T18:28:48.000Z (over 3 years ago)
- Last Synced: 2025-10-10T16:35:41.869Z (8 months ago)
- Language: HTML
- Size: 36.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wallet-ui
Sample UI components for rendering an NFT wallet, built with TailwindCss
## Purpose
This page views are intended to reduce development time of a whitelabel wallet by providing a set of UI components.
Developers should:
* Reuse and addapt this components to a frontend framework - like React, Angular or Vue
* Deploy a backend to interact with the Crossmint Wallets API
## How to preview
Run a local server from the working directory, using one of the following commands:
Using Python:
```
python3 -m http.server --cgi 8080
```
Using php:
```
php -S localhost:2222
```
Using npm:
```
// Globally install serve
npm i -g serve
// Run serve
serve
```
## Files
```
.
├── LICENSE
├── README.md
├── account.html - _Page with account information_
├── assets
│ ├── ethereum-grey.svg
│ ├── logo.png
│ ├── polygon-grey.svg
│ └── solana-grey.svg
├── collection.html - _NFTs list view, with component to filter by chain_
├── nft.html - _NFTs detail view_
├── nftExport.html - _NFTs detail view, with export modal_
└── nftQR.html - _NFTs detail view, with QR modal_
```