Skip to content

Commit

Permalink
chore: add react-icons library
Browse files Browse the repository at this point in the history
  • Loading branch information
ismail-benlaredj committed Oct 13, 2023
1 parent ed9f4ce commit bf322cf
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 21 deletions.
10 changes: 3 additions & 7 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
],
"~/*": [
"./public/*"
]
"@/*": ["./src/*"],
"~/*": ["./public/*"]
},
"incremental": true
}
}
}
15 changes: 15 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"next-i18next": "^14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-router-dom": "^6.16.0",
"react-test-renderer": "^18.2.0"
},
Expand Down
10 changes: 5 additions & 5 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
16 changes: 7 additions & 9 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,15 @@ module.exports = {
theme: {
extend: {
fontFamily: {
'poppins': ['"Poppins"', "sans-serif"],
poppins: ['"Poppins"', "sans-serif"],
},
colors: {
'green': '#33956D',
'black': '#3C4347',
'red': '#F07167',
'gray': '#E9E9E9',
}

green: "#33956D",
black: "#3C4347",
red: "#F07167",
gray: "#E9E9E9",
},
},
},
plugins: [],
}

};

0 comments on commit bf322cf

Please sign in to comment.