Skip to content

Latest commit

 

History

History
63 lines (52 loc) · 1.01 KB

README.md

File metadata and controls

63 lines (52 loc) · 1.01 KB

nova

Nova Frontend:

  • Next.js
  • TailwindCSS
  • Typescript

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Architecture

|-- src
|  |-- abis
|  |  |-- // smart contract abis
|  |-- api-services
|  |  |-- interfaces
|  |-- // backend api call services
|  |-- assets
|  |  |-- css
|  |  |-- fonts
|  |  |-- images
|  |-- context
|  |  |-- connector.tsx
|  |  |-- global.tsx
|  |  |-- overlay.tsx
|  |  |-- index.ts
|  |-- design-systems
|  |  |-- Atoms // the minor pure components
|  |  |-- Molecules // the reusable medium sized components
|  |  |-- Organisms // the reusable large sized components
|  |  |-- Templates // the reusable page templates
|  |  |-- index.ts
|  |-- pages
|  |-- services
|  |  |-- interfaces
|  |  |-- // smart contract call services
|  |-- utils
|  |-- appConfig.ts
|  |-- interfaces.d.ts
|-- next.config.js
|-- tsconfig.json
|-- tailwind.config.js
|-- yarn.lock

Environment Variables

# Infura
NEXT_PUBLIC_INFURA_ID=

```# novafrontend