* wip: form for mint * style: change bgcolor for disabled button * fix: add key to list items * styles: add some spacings and border radius * refactor: change type file and move file validation to form * feat: add minted nft card. add wallet step * refactor: add mint card header to not repeat code * styles: add border radius to svg * styles: fix styles on mint view * style: fix height mint view * fix: fix save repository config * chore: changes based on PR review * wip: connecting with gh login * chore: add env variables * wip: gh login wiht auth0 * feat: add gh login integration * chore: remove web3auth packages * doc: add info on readme to know how to get firebase credentials * feat: add spinner component (#133) * fix: fix for polyfills * refactor: remove loading state cause it was causing a loop * chore: change placeholder * feat: add constants env file * fix: fix polyfills * refactor: implement async thunk for github login * wip: add async thunk for github api calls * feat: implemented async thunk for github api calls * chore: add promise.all to improve api call performance * fix: fix console log error |
||
|---|---|---|
| .. | ||
| .storybook | ||
| src | ||
| .eslintignore | ||
| .eslintrc.js | ||
| .gitignore | ||
| .prettierrc | ||
| README.md | ||
| index.html | ||
| package.json | ||
| postcss.config.js | ||
| tailwind.config.js | ||
| tsconfig.json | ||
| vite.config.ts | ||
| yarn.lock | ||
README.md
⚡ Overview
Minimal UI to interact with the contract, build with React. It will allow you to:
- Mint your site
- List the minted sites
- View the details of the minted site
⚙️ Requirements
You'll need to have nodejs and YARN installed. Please do not use NPM for package installation.
Also, don't forget to check the Getting started section on the wiki if you didn't do it yet, cause you need to configure your wallet to be able to mint a site.
🖥️ Running
To run the UI localy follow the steps:
-
Clone the repo, check out how here.
-
Install the dependencies:
$ yarn -
You'll need to set up your firebase cretendials to make work the github login. Set the .env file with the following variables
VITE_FIREBASE_API_KEY VITE_FIREBASE_AUTH_DOMAIN VITE_FIREBASE_PROJECT_ID VITE_FIREBASE_STORAGE_BUCKET VITE_FIREBASE_MESSAGING_SENDER_ID VITE_FIREBASE_APP_ID VITE_FIREBASE_MEASUREMENT_ID
Get them from the project settings on the firebase dashboard. Read this article to know how to get your porject config
-
Start the local server running the app:
$ yarn devNow a local server should be running on http://localhost:5173.
🤖 Build public
As we use vite, to build a public distribution for production run:
$ vite build
This will create a dist folder for the deployment.