diff --git a/jsconfig.json b/jsconfig.json index de48155..695c05d 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -2,13 +2,9 @@ "compilerOptions": { "baseUrl": ".", "paths": { - "@/*": [ - "./src/*" - ], - "~/*": [ - "./public/*" - ] + "@/*": ["./src/*"], + "~/*": ["./public/*"] }, "incremental": true } -} \ No newline at end of file +} diff --git a/package-lock.json b/package-lock.json index 33cfde1..8aeed43 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,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" }, @@ -12428,6 +12429,14 @@ } } }, + "node_modules/react-icons": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.11.0.tgz", + "integrity": "sha512-V+4khzYcE5EBk/BvcuYRq6V/osf11ODUM2J8hg2FDSswRrGvqiYUYPRy4OdrWaQOBj4NcpJfmHZLNaD+VH0TyA==", + "peerDependencies": { + "react": "*" + } + }, "node_modules/react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", @@ -23937,6 +23946,12 @@ "html-parse-stringify": "^3.0.1" } }, + "react-icons": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.11.0.tgz", + "integrity": "sha512-V+4khzYcE5EBk/BvcuYRq6V/osf11ODUM2J8hg2FDSswRrGvqiYUYPRy4OdrWaQOBj4NcpJfmHZLNaD+VH0TyA==", + "requires": {} + }, "react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", diff --git a/package.json b/package.json index df62af5..e9cabde 100644 --- a/package.json +++ b/package.json @@ -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" }, diff --git a/postcss.config.js b/postcss.config.js index 33ad091..67cdf1a 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,6 @@ module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/tailwind.config.js b/tailwind.config.js index c477350..3e07559 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -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: [], -} - +};