Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sanjaraiy/nfd_project


https://github.com/sanjaraiy/nfd_project

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

# NFD Web Development Project

## create react app
```
npx create-react-app myproject_name;
```
### Download required assets for this project

There are assets for this project that has been used here :- [click here for Assets](https://github.com/sanjaraiy/NFD_Project/tree/main/src/Components/assets).

## Using install the Tailwind CSS
```
npm install -D tailwindcss
npx tailwindcss init
```
## Configuration of Tailwind CSS

```
module.exports = {
content:` ["./src/**/*.{html,js}"]`,
theme: {
extend: {},
},
plugins: [],
}
```

## Add the Tailwind directives to your CSS

```
@tailwind base;
@tailwind components;
@tailwind utilities;
```

### Project Description