From e1ee46741356589804592e9cf63c30e87b160293 Mon Sep 17 00:00:00 2001 From: LaxmiB Date: Thu, 25 Dec 2025 18:00:33 +0530 Subject: [PATCH] Add remaining frontend config files --- .env | 2 ++ postcss.config.js | 6 ++++++ tailwind.config.js | 22 ++++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 .env create mode 100644 postcss.config.js create mode 100644 tailwind.config.js diff --git a/.env b/.env new file mode 100644 index 0000000..7c3c796 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +REACT_APP_API_BASE_URL=http://192.168.0.10:8000 + diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..33ad091 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..0e7078d --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,22 @@ +// tailwind.config.js +module.exports = { + content: [ + "./src/**/*.{js,jsx,ts,tsx}", // Make sure this path is accurate + ], + theme: { + extend: { + fontFamily: { + sans: ['Poppins', 'sans-serif'], + }, + colors: { + lcepl: { + blue: '#1E3A8A', + gray: '#374151', + orange: '#F97316', + light: '#F9FAFB', + }, + }, + }, + }, + plugins: [], +};