From 1d1c74e67c076a95476d7bde1300f9597361377f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 7 Dec 2025 04:17:01 +0000 Subject: [PATCH 1/2] Initial plan From 769b5747b11a98796836372ab79971fcfd1a08fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 7 Dec 2025 04:28:03 +0000 Subject: [PATCH 2/2] Add missing Tailwind and PostCSS configuration files to fix Frenly AI placement Co-authored-by: teoat <68715844+teoat@users.noreply.github.com> --- frontend/postcss.config.js | 6 ++++++ frontend/tailwind.config.js | 28 ++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 frontend/postcss.config.js create mode 100644 frontend/tailwind.config.js diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js new file mode 100644 index 0000000..2e7af2b --- /dev/null +++ b/frontend/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js new file mode 100644 index 0000000..bbe18e0 --- /dev/null +++ b/frontend/tailwind.config.js @@ -0,0 +1,28 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + "./index.html", + "./src/**/*.{js,ts,jsx,tsx}", + "./components/**/*.{js,ts,jsx,tsx}", + ], + darkMode: 'class', + theme: { + extend: { + animation: { + 'ui-shimmer': 'ui-shimmer 2s linear infinite', + 'ui-pulse-glow': 'ui-pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite', + }, + keyframes: { + 'ui-shimmer': { + '0%': { backgroundPosition: '-1000px 0' }, + '100%': { backgroundPosition: '1000px 0' }, + }, + 'ui-pulse-glow': { + '0%, 100%': { opacity: '1' }, + '50%': { opacity: '0.5' }, + }, + }, + }, + }, + plugins: [], +}