Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanjaraiy/nfd_project
https://github.com/sanjaraiy/nfd_project
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sanjaraiy/nfd_project
- Owner: sanjaraiy
- Created: 2024-01-10T20:46:11.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-10T21:33:23.000Z (10 months ago)
- Last Synced: 2024-01-10T22:47:25.192Z (10 months ago)
- Language: JavaScript
- Size: 6.84 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NFD Web Development Project
## create react app
```
npx create-react-app myproject_name;
```
### Download required assets for this projectThere 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