An open API service indexing awesome lists of open source software.

https://github.com/buildwithcode888/nova_frontend


https://github.com/buildwithcode888/nova_frontend

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# nova

Nova Frontend:

- Next.js
- TailwindCSS
- Typescript

## Getting Started

First, run the development server:

```bash
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