non-fungible-apps/ui
Camila Sosa Morales 95d15582b2
chore: add tailwind and stitches (#75)
* styles: add stitches

* style: add tailwaind

* style: remove sizes

* chore: add storybook with sample story

* refactor: remove storybook eslint

* refactor: add tailwind with vite

* fix: fix storybook script

* style: dark mode

* style: add google fonts

* style: add radix colors

* style: add radix library

* refactor: remove light colors, not used for now

* chore: add comment to remove story example
2023-01-18 11:41:08 -05:00
..
.storybook chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00
src chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00
.eslintignore feat: boilerplate for UI (#14) 2022-12-01 10:25:30 -03:00
.eslintrc.js chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00
.gitignore UI 11: refactor vite.config.json (#20) 2022-12-05 15:15:21 -03:00
.prettierrc feat: boilerplate for UI (#14) 2022-12-01 10:25:30 -03:00
README.md fix: ui readme broken wiki link (#63) 2022-12-22 14:43:03 -03:00
index.html chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00
package.json chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00
postcss.config.js chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00
tailwind.config.js chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00
tsconfig.json chore: precommit hooks (#18) 2022-12-16 14:57:49 -03:00
vite.config.ts chore: precommit hooks (#18) 2022-12-16 14:57:49 -03:00
yarn.lock chore: add tailwind and stitches (#75) 2023-01-18 11:41:08 -05:00

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:

  1. Clone the repo, check out how here.

  2. Install the dependencies:

    $ yarn
    
  3. Start the local server running the app:

    $ yarn dev
    

    Now 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.